fix comments etc.

This commit is contained in:
Philipp Jacoby
2026-02-10 17:57:43 +01:00
parent 3003310be0
commit 8965b04a61
5 changed files with 59 additions and 60 deletions

View File

@@ -1,4 +1,4 @@
LOAD CSV WITH HEADERS FROM 'file:///edges_treats.csv' AS row
LOAD CSV WITH HEADERS FROM 'file:///edges_associates.csv' AS row
MATCH (source {id: row.source})
MATCH (target {id: row.target})
CREATE (source)-[:TREATS]->(target);
CREATE (source)-[:ASSOCIATES]->(target);