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
| -h | --host TEXT | Redis server host (default: 127.0.0.1) |
19
19
| -p | --port INTEGER | Redis server port (default: 6379) |
20
-
| -P | --password TEXT | Redis server password |
21
-
| -s | --ssl TEXT | Server is SSL-enabled |
20
+
| -a | --password TEXT | Redis server password |
21
+
| -c | --ssl_certfile TEXT | path to certfile for SSL connection |
22
+
| -k | --ssl_keyfile TEXT | path to keyfile for SSL connection |
22
23
| -n | --nodes TEXT | path to node csv file [required]|
23
24
| -r | --relationships TEXT | path to relationship csv file |
24
25
@@ -41,6 +42,7 @@ The label (for nodes) or relationship type (for relationships) is derived from t
41
42
### Relationship files
42
43
- Relationship inputs have no headers.
43
44
- Each row should specify a source and destination node ID.
45
+
- All specified node IDs must exist in the database, as described in [Determining Node IDs](#determining-node-ids).
44
46
- Described relationships are always considered to be directed (source->destination).
45
47
- The bulk insert script does not yet support adding properties to relationships (though this can be done after the fact with RedisGraph queries).
46
48
-_NOTE_ Relationship processing does not yet include node lookups. The entries in a relationship file should all be integers corresponding to node IDs.
0 commit comments