https://raw.githubusercontent.com/saurabhkumar1903/neo4j/master/alterFile/sampletestoutput1.csv
here's the link to an image showning my expected output:[https://i.imgur.com/x6CYdfU.jpg] I've drawn it on paper just to show the expected output.
[I have a csv file containing a list of nodes where each line denotes a relationship of node at line[0] with every other list of nodes line2,line2,line[3].....line[4500] in that line]
eg. 1,3,4,5,7,8
2,4,5,11
4,10,11,15
here node at
line[0] i.e. "1" has a directed relationship with
nodes at line[2] i.e "3" as a friend,
nodes at line[4], i,e."4" as a friend,
nodes at line[6], i,e."5" as a friend,
what i am trying to do is I want to show a graph in neo4j dipicting the suggested friend relationship among each nodes.
what I cannot figure out is how to iterate the whole csv file as well as capture the relationship among each nodes on each line of csv file.