Files
ETL_Datamanagement/neo4jqueries/loadingQueriesNeo4j/LoadRelationshipsEdges_Upregulates.cypher
Philipp Jacoby 8965b04a61 fix comments etc.
2026-02-10 17:57:43 +01:00

4 lines
183 B
Plaintext

LOAD CSV WITH HEADERS FROM 'file:///edges_upregulates.csv' AS row
MATCH (source {id: row.source})
MATCH (target {id: row.target})
CREATE (source)-[:UPREGULATES]->(target);