This GraphGist answers a Stackoverflow question.
We want to create a social network, and have to connect some people. Let’s do that in two steps.
UNWIND ["Amanda","Michael", "Max","Magnus","Mark","Peter","Andres"] AS name
CREATE (:User {name:name})