djskl opened a new issue, #351: URL: https://github.com/apache/age/issues/351
I tried the "WITH" cluse as described by the doc [Filter on aggregate function results](https://age.apache.org/age-manual/master/clauses/with.html#filter-on-aggregate-function-results). But, I found that the condition presented by 'where' can't work with 'match'. Example Code: `select * from cypher('agload_test_graph', $$ match (n) with n where n.name='A' return n $$) as (sp agtype)` the `n.name='A'` doesn't work. If "with" are removed, 'where' can then work: `select * from cypher('agload_test_graph', $$ match (n) where n.name='A' return n $$) as (sp 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
