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.

No need to import a graphId by WITH in a CALL subquery?

cristiscu
Node Clone

The following query doesn't seem to need a WITH graphId for the CALL subquery block, why?

UNWIND example.graphIds() AS graphId
CALL {
  USE example.graph(graphId)
  MATCH (movie:Movie)
  RETURN movie.released AS released
}
RETURN min(released) AS earliest
0 REPLIES 0