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/notifications/all-notifications.adoc
+8-15Lines changed: 8 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4049,24 +4049,17 @@ Query::
4049
4049
MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count
4050
4050
----
4051
4051
Description of the returned code::
4052
-
A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship `r` was repeated)
4052
+
A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship r was repeated)
4053
+
====
4053
4054
4054
-
======
4055
-
[.include-with-GQLSTATUS-code]
4056
-
======
4055
+
.Aggregation skipping a NULL value(when run on version 5.24 or newer)
4056
+
====
4057
4057
Query::
4058
4058
+
4059
4059
[source,cypher]
4060
4060
----
4061
-
MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count
4061
+
UNWIND [1, NULL, 2] AS i RETURN count(i)
4062
4062
----
4063
-
4064
-
Returned GQLSTATUS code::
4065
-
01N63
4066
-
4067
-
Returned status description::
4068
-
warn: repeated relationship reference.
4069
-
`r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results.
0 commit comments