moeed-k commented on issue #628:
URL: https://github.com/apache/age/issues/628#issuecomment-1404787909

   That's quite a lot of time. Are there vertices with different labels 
involved? Can you try specifying the label in the query as well, to see if 
narrowing it cuts down the time in any way? For example:
   ```
   
   SELECT * from cypher('main', $$
           MATCH (V:label_name)-[R:similar]-(V2:label_name)
           RETURN V,R,V2
   $$) as (V agtype, R agtype, V2 agtype);
   ```
   


-- 
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

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

Reply via email to