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/clauses/union.adoc
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,6 @@ Removal of duplicates can also be accomplished by explicitly including `DISTINCT
107
107
The `UNION DISTINCT` keyword was introduced as part of Cypher's xref:appendix/gql-conformance/index.adoc[], and using it is functionally the same as using simple `UNION`.
108
108
109
109
.Query
110
-
// tag::clauses_union_distinct[]
111
110
[source, cypher]
112
111
----
113
112
MATCH (n:Actor)
@@ -116,7 +115,6 @@ UNION DISTINCT
116
115
MATCH (n:Movie)
117
116
RETURN n.title AS name
118
117
----
119
-
// end::clauses_union_distinct[]
120
118
121
119
The combined result is returned, without duplicates.
0 commit comments