File tree 1 file changed +12
-4
lines changed
modules/ROOT/pages/notifications
1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,9 @@ Query::
151
151
+
152
152
[source, cypher, role="noplay"]
153
153
----
154
- MATCH p=shortestPath((n)-[*]->(m)) RETURN p
154
+ MATCH p=shortestPath((n)-[*]->(m))
155
+ WHERE n <> m
156
+ RETURN p
155
157
----
156
158
157
159
Description of the returned code::
@@ -164,7 +166,9 @@ Consider adding an upper limit.
164
166
+
165
167
[source, cypher, role="noplay"]
166
168
----
167
- MATCH p=shortestPath((n)-[*..8]->(m)) RETURN p
169
+ MATCH p=shortestPath((n)-[*..8]->(m))
170
+ WHERE n <> m
171
+ RETURN p
168
172
----
169
173
======
170
174
[.include-with-GQLSTATUS-code]
@@ -174,7 +178,9 @@ Query::
174
178
+
175
179
[source, cypher, role="noplay"]
176
180
----
177
- MATCH p=shortestPath((n)-[*]->(m)) RETURN p
181
+ MATCH p=shortestPath((n)-[*]->(m))
182
+ WHERE n <> m
183
+ RETURN p
178
184
----
179
185
180
186
Returned GQLSTATUS code::
@@ -192,7 +198,9 @@ Consider adding an upper limit.
192
198
+
193
199
[source, cypher, role="noplay"]
194
200
----
195
- MATCH p=shortestPath((n)-[*..8]->(m)) RETURN p
201
+ MATCH p=shortestPath((n)-[*..8]->(m))
202
+ WHERE n <> m
203
+ RETURN p
196
204
----
197
205
======
198
206
=====
You can’t perform that action at this time.
0 commit comments