Database Reference
In-Depth Information
Loading nodes with Load CSV
Then, we will add the relationships to the graph using the following query:
//Loading CSV with Rels
load csv with headers from
"file:/your/path/to/rels.csv"
as rels
match (from {id: rels.From}), (to {id: rels.To})
create from-[:REL {type: rels.`Relationship Type`}]->to
return from, to
 
Search WWH ::




Custom Search