mirror of
https://github.com/Steffo99/unimore-bda-4.git
synced 2024-11-22 08:04:19 +00:00
9 lines
313 B
Text
9 lines
313 B
Text
|
MATCH (:Crate)-[relation:IS_TAGGED_WITH]->(:Keyword)
|
||
|
DELETE relation;
|
||
|
|
||
|
LOAD CSV WITH HEADERS FROM "file:///crates_keywords.csv" AS line FIELDTERMINATOR ","
|
||
|
MATCH
|
||
|
(crate:Crate {id: toInteger(line.crate_id)}),
|
||
|
(keyword:Keyword {id: toInteger(line.keyword_id)})
|
||
|
CREATE (crate)-[:IS_TAGGED_WITH]->(keyword);
|