wgmayer0 opened a new issue, #2129:
URL: https://github.com/apache/age/issues/2129

   Is there a way to run this query faster? Maybe a technique I am overlooking? 
I see that I am running MATCH multiple times and not sure if that has anything 
to do with it
   
   SELECT concat(a::text, ' / ', b::text, ' / ', c::text, ' / ', d::text, ' / 
', e::text) AS concatenated_string
   FROM cypher('hermech', $$ 
     MATCH (a:load_number)-[]-(b:origin) 
     MATCH (a)-[]-(c:pickup_time) 
     MATCH (a)-[]-(d:destination) 
     MATCH (a)-[]-(e:delivery_time) 
     MATCH (a)-[]-(d:destination) 
     MATCH (a)-[]-(e:delivery_time) 
     RETURN a.value, b.value, c.value, d.value, e.value
   $$) AS (a agtype, b agtype, c agtype, d agtype, e agtype);
   
   It seems to take about 4 seconds
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to