Is there a way to run sub-queries in version 3.5 - replacement of CALL {}

Hi,

Version 4.0 provides a way CALL {subquery} to run a sub-query. Is there a way to replicate this in 3.5?

Thanks!!

Not with just Cypher. You can do something similar with APOC Procedures using apoc.cypher.run() (for read-only subqueries) or apoc.cypher.doIt() (if you need to write to the graph).

OK. Thanks! Let us try..