Hello,I'm new to Neo4j Cypher, trying to understand all the basics of syntax.Found this code (source page here)
MATCH (p:Person) WITH collect(distinct p.country) as countries
WITH [cName IN countries | apoc.create.vNode(['Country'],{name:cName})] a...