I had created a node in neo4j but i would like to create relation ships that relationship is in csv
file,how to create a relationship between nodes while adding csv
into neo4j
...pls anybody answer me..
This is my query
LOAD CSV WITH HEADERS FROM "file:///opt/lampp/htdocs/cia/data/data1.csv" AS line with line
merge(Anum:ph{num:tofloat(line.`A_Number`),imei:toint(line.`IMEI_A`),imsi:toint(line.`IMSI_A`)})
merge(Bnum:ph{num:tofloat(line.`B_Number`),imei:toint(line.`IMEI_B`),imsi:toint(line.`IMSI_B`)})
create(Anum)-[line.'Call_Type']->(Bnum)
return line;
But it does not excuted,please tell me the correction