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
The `id` property of the nodes in the `persons` group will be stored as `long` type, while the `id` property of the nodes in the `games` group will be stored as `string` type, as the global `id-type` is a string.
1442
1442
====
1443
1443
1444
+
[role=label--new-5.26]
1445
+
[[import-tool-actions-csv-files]]
1446
+
== Updating data using actions in CSV files
1447
+
1448
+
You can use actions in CSV files to update data during incremental import.
1449
+
This feature is especially useful when you want to update existing nodes or relationships in large datasets.
1450
+
1451
+
In the header file, you can specify whether an action should be taken for the data in the fields using the `:ACTION` keyword.
1452
+
If no action is specified, the import tool works as in full import mode, creating new data.
1453
+
1454
+
The following actions are supported:
1455
+
1456
+
* `empty` = `CREATE` (default)
1457
+
* `C`, `CREATE` - Creates a new entity.
1458
+
* `U`, `UPDATE` - Updates an existing entity.
1459
+
* `D`, `DELETE` - Deletes an existing entity.
1460
+
Deleting a node also deletes its relationships (`DETACH DELETE`).
1461
+
1462
+
On each row in the data file, you can specify the action for the data in the fields.
0 commit comments