I'm wanting to import a big CSV file which contains a tree structure. Removing some of the complexity, we could say there are three columns in my CSV: - name - id - parent_id
id is a unique alphanumeric code (e.g. GB234231AB) and parent_id references it from many nodes.
I've managed to load the CSV in find and index the two columns, but can't work out the Cypher for the load of the relationships.
How do I easily create the tree in Neo4J?