ajit-satav opened a new issue, #1413:
URL: https://github.com/apache/age/issues/1413

   While executing variable length query I am getting zero results
   
   SELECT *
   FROM cypher('demo', $$
       MATCH (a:Employee{name:'xxxx'})-[*]-(b)
       RETURN a
   $$) as (a agtype);
   But if I do execute below query without variable length edges (*) it works 
and returns results
   
   SELECT *
   FROM cypher('demo', $$
       MATCH (a:Employee{name:'xxxx'})-[]-(b)
       RETURN a
   $$) as (a agtype);
   
   Any suggestions why query with * is returning zero results?


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