We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 485f42e commit f5661e6Copy full SHA for f5661e6
modules/ROOT/pages/tools/neo4j-admin/neo4j-admin-import.adoc
@@ -435,6 +435,14 @@ It currently only works for full import.
435
You should have a Cypher script containing only `CREATE INDEX|CONSTRAINT` commands to be parsed and executed.
436
This file uses ';' as the separator.
437
438
+For example:
439
+
440
+[source, cypher, role=nocopy]
441
+----
442
+CREATE INDEX PersonNameIndex FOR (i:Person) ON (i.name);
443
+CREATE CONSTRAINT PersonAgeConstraint FOR (c:Person) REQUIRE c.age IS :: INTEGER
444
445
446
List of supported indexes and constraints that can be created by the import tool:
447
448
* RANGE
0 commit comments