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
=== Handling existing constraints when creating a constraint
371
371
372
-
Creating an already existing constraint will fail.
372
+
Creating an already existing constraint will fail.
373
373
To avoid such an error, `IF NOT EXISTS` can be added to the `CREATE` command.
374
374
This will ensure that no error is thrown and that no constraint is created if any other constraint with the given name, or another relationship property uniqueness constraint on the same schema, already exists.
375
375
@@ -669,7 +669,7 @@ For the node property existence constraints, they will say `Node property existe
=== Handling existing constraints when creating a constraint
671
671
672
-
Creating an already existing constraint will fail.
672
+
Creating an already existing constraint will fail.
673
673
To avoid such an error, `IF NOT EXISTS` can be added to the `CREATE` command.
674
674
This will ensure that no error is thrown and that no constraint is created if any other constraint with the given name, or another node property existence constraint on the same schema, already exists.
675
675
@@ -905,7 +905,7 @@ For the relationship property existence constraints, they will say `Relationship
=== Handling existing constraints when creating a constraint
907
907
908
-
Creating an already existing constraint will fail.
908
+
Creating an already existing constraint will fail.
909
909
To avoid such an error, `IF NOT EXISTS` can be added to the `CREATE` command.
910
910
This will ensure that no error is thrown and that no constraint is created if any other constraint with the given name, or another relationship property existence constraint on the same schema, already exists.
=== Handling existing constraints when creating a constraint
1878
1878
1879
-
Creating an already existing constraint will fail.
1879
+
Creating an already existing constraint will fail.
1880
1880
To avoid such an error, `IF NOT EXISTS` can be added to the `CREATE` command.
1881
1881
This will ensure that no error is thrown and that no constraint is created if any other constraint with the given name, or another node key constraint on the same schema, already exists.
=== Handling existing constraints when creating a constraint
2191
2191
2192
-
Creating an already existing constraint will fail.
2192
+
Creating an already existing constraint will fail.
2193
2193
To avoid such an error, `IF NOT EXISTS` can be added to the `CREATE` command.
2194
2194
This will ensure that no error is thrown and that no constraint is created if any other constraint with the given name, or another relationship key constraint on the same schema, already exists.
2195
2195
@@ -2548,7 +2548,7 @@ This can be used to drop the constraint with the xref::constraints/syntax.adoc#c
0 commit comments