graphdb-intellij-plugin icon indicating copy to clipboard operation
graphdb-intellij-plugin copied to clipboard

Support for quantified path patterns

Open TomVanWemmel opened this issue 1 year ago • 0 comments

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

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

TomVanWemmel avatar Aug 18 '23 07:08 TomVanWemmel