Hi,
I have a data like this in csv file:fn,ln,city
A,F,C
B,F,D
C,F,E
H,Z,E
And i created graph like this:
LOAD CSV WITH HEADERS FROM "file:///test_data1.csv" as col
MERGE (FN:Firstname{name:col.`fn`})
MERGE (LN:Lastname{name:col.`ln`})
MERGE (CITY...