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
Copy file name to clipboardExpand all lines: modules/ROOT/pages/planning-and-tuning/operators/operators-detail.adoc
+48Lines changed: 48 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6056,6 +6056,54 @@ Total database accesses: 15, total allocated memory: 2232
6056
6056
6057
6057
======
6058
6058
6059
+
[[query-plan-merge-unique-node]]
6060
+
=== Merge Unique Node
6061
+
6062
+
////
6063
+
[source, cypher, role=test-setup]
6064
+
----
6065
+
CREATE CONSTRAINT team_name IF NOT EXISTS FOR (t:Team) REQUIRE (t.name) IS UNIQUE
6066
+
----
6067
+
////
6068
+
6069
+
The `MergeUniqueNode` operator is similar to the xref:planning-and-tuning/operators/operators-detail.adoc#query-plan-merge[`Merge`] operator, but is used when there is a property uniqueness constraint on the property used in the `MERGE` statement.
0 commit comments