I'm new to Neo4j and I'm currently working on to build a citation network.
I have two CSV files one containing the node properties and other containing relationship properties.
PAPERS.CSV -
paperId, title, year
123, abc, 1900
234, cde, 1902
456, efg, 1904
CITES.CSV -
fromId, ToId
123, 234
234, 456
My graph should look like (123)--cites-->(234)--cites-->(456)
.
Using these files how do I create a relationship between nodes?