cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

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

1 ACCEPTED SOLUTION

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

View solution in original post

2 REPLIES 2

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