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
@@ -4052,14 +4107,21 @@ Description of the returned code::
4052
4107
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
4108
====
4054
4109
4055
-
.Aggregation skipping a NULL value(when run on version 5.24 or newer)
4056
-
====
4110
+
======
4111
+
[.include-with-GQLSTATUS-code]
4112
+
======
4057
4113
Query::
4058
4114
+
4059
4115
[source,cypher]
4060
4116
----
4061
-
UNWIND [1, NULL, 2] AS i RETURN count(i)
4117
+
MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count
4062
4118
----
4063
-
Description of the returned code::
4064
-
null value eliminated in set function.
4065
-
====
4119
+
4120
+
Returned GQLSTATUS code::
4121
+
01N63
4122
+
4123
+
Returned status description::
4124
+
warn: repeated relationship reference.
4125
+
`r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results.
0 commit comments