UNWIND
UNWIND expands a list into individual rows. Each element of the list becomes a separate row in the output.
Basic Usage
UNWIND [1, 2, 3] AS x
RETURN x
Returns three rows: 1, 2, 3.
Creating Multiple Nodes
Use UNWIND with CREATE to create nodes from a list:
UNWIND ["Alice", "Bob", "Charlie"] AS name
CREATE (n:Person {name: name})
With Parameters
Pass a list as a parameter and unwind it:
UNWIND $names AS name
MATCH (n:Person {name: name})
RETURN n
Combining with MATCH
UNWIND $tags AS tag
MATCH (d:Document)
WHERE d.title CONTAINS tag
RETURN tag, d.title