You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//quantified path
MATCH ((n:A)-[:R]->({p: 30}) WHERE EXISTS { (n)-->+(:X) }){2,3}
// quantified relation
MATCH (:A) (()-[r:R]->()){2,3} (:B)
// one or more relationships of any direction and any type
MATCH (:A)--+(:B)
The text was updated successfully, but these errors were encountered:
Neo4j introduced quantified path patterns and quantified relations in version 5.9
https://neo4j.com/docs/cypher-manual/current/patterns/reference/#quantified-path-patterns
The plugin does not support the following
The text was updated successfully, but these errors were encountered: