Hello, I have a problem :
I'm working on a Graph with Countries of the world
I use this Cypher command :
LOAD CSV WITH HEADERS FROM "file:///test.csv" AS line
create (cap:Capitale {name: line.capital})
create (p:Pays {name: line.pays, population: lin...