jrgemignani commented on issue #1413:
URL: https://github.com/apache/age/issues/1413#issuecomment-1832145512

   @ajit-satav Could you please include the results of the queries along with 
the queries? In particular, the full output of c1, c2, and the edge. Say, these 
queries instead -
   
   ```
   SELECT * from 
      cypher('demo', $$
         MATCH (c1:components{name:'XXXX'})-[e]-(c2:versions)
         return c1,c2,e
     $$) as (c1 agtype, c2 agtype, e agtype);
   
   SELECT * from 
      cypher('demo', $$
         MATCH (c1:components{name:'XXXX'})-[e*]-(c2:versions)
         return c1,c2,e
     $$) as (c1 agtype, c2 agtype, e agtype);
   ```
   
   Just looking at the queries, and not the results (blank or otherwise), 
doesn't really give us much to go on.


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