usmann123706 opened a new issue, #335:
URL: https://github.com/apache/age-website/issues/335

   There is an issue in list function (nodes).
   Bug code is as follows:
   
   `SELECT *
   FROM cypher('graph_name', $$
        MATCH p = (a)-[]->(b)-[]->(c)
        WHERE a.name = 'Alice' AND c.name = 'Eskil'
        RETURN nodes(a)
   $$) as (vertices agtype);`
   
   Corrected version is as follows:
   
   `SELECT *
   FROM cypher('graph_name', $$
        MATCH p = (a)-[]->(b)-[]->(c)
        WHERE a.name = 'Alice' AND c.name = 'Eskil'
        RETURN nodes(p)
   $$) as (vertices 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.apache.org

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

Reply via email to