kysmou opened a new issue #64:
URL: https://github.com/apache/incubator-age/issues/64


   explain
   SELECT *
   FROM cypher('graph_name', $$
   MATCH (a:Person), (b:Person)
   WHERE a.name = 'Node A' AND b.name = 'Node B'
   with a,b
   match(a)-[e:RELTYPE]->(b)
   where b.born > 1999
   RETURN a
   $$) as (a agtype);
                              QUERY PLAN                           
   ----------------------------------------------------------------
    Function Scan on cypher  (cost=0.00..10.00 rows=1000 width=32)
   (1 row)
   
   Explain about Cypher is simply displayed as Function Scan on Cypher.
   How can I see the plan information for the Cypher statement?


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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to