I try to import a CSV file to Neo4j and create some relationships.
The headers of the file are: id1, id2, VIN1, VIN2.
The statements i wrote:
load csv with headers from "file:///file.csv" as line
match (p1:Person{id:line.ID1}), (c1:Car{id:line.VIN1})...