If I understand this correctly, every query that is sent when using the Apache AGE extension is being parsed, analyzed, rewritten, and it eventually becomes an SQL statement that is being run in the backend process for postgres to actually execute the command.
When we use a simple match query like
SELECT * FROM cypher('graph', $$ MATCH (u) return u $$) as (u agtype);
what is the SQL statement that postgres runs to actually fetch the correct vertices?