HI
I am new to neo4j. Trying to load CSV and create relationship between nodes of same label.
Using the queries mentioned in this post;
LOAD CSV...
MERGE (p:Process {id:line.processID})
ON CREATE SET p.name = line.process---first pass creates the nod...