All Downloads are FREE. Search and download functionalities are using the official Maven repository.

browser.content.help.unwind.html Maven / Gradle / Ivy

The newest version!

UNWIND

unwind a collection into a sequence of rows

The UNWIND expands a collection in to a sequence of rows. Any existing identifiers are still available after UNWIND.

Reference: UNWIND manual page
Related: :help MATCH :help Cypher
MATCH p = shortestPath( (lucy:Person {name:"Lucy Liu"})-[:ACTED_IN*]-(bacon:Person {name:"Kevin Bacon"}) )
UNWIND nodes(p) as n
RETURN n.name
Return a set of actors that form the shortest acquaintance links between Lucy Liu and Kevin Bacon




© 2015 - 2025 Weber Informatics LLC | Privacy Policy