UNWIND
The UNWIND clause breaks down a given list into a sequence of records; each contains a single element in the list.
The order of the records preserves the original list order.
GRAPH.QUERY DEMO_GRAPH
"CREATE (p {array:[1,2,3]})"
GRAPH.QUERY DEMO_GRAPH
"MATCH (p) UNWIND p.array AS y RETURN y"