You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nodes are identified by their unique property value for the key/label combination that the header specifies.
1463
+
1464
+
.Using actions in CSV files to update relationships
1465
+
[source, cypher, role="nocopy"]
1466
+
----
1467
+
:ACTION,:START_ID,:END_ID,:TYPE,role
1468
+
CREATE,1,2,ACTED_IN,"Neo"
1469
+
UPDATE,1,2,ACTED_IN,"Morpheus"
1470
+
DELETE,1,3,ACTED_IN
1471
+
----
1472
+
1473
+
Relationships are identified non-uniquely by their start and end node IDs, and their type.
1474
+
1475
+
To further narrow down selection you can tag a property column as an identifier to help out in selecting relationships uniquely (or at least more uniquely).
1476
+
1477
+
.Using actions in CSV files to update relationships with identifier properties
0 commit comments