Skip to content

Commit 15c4955

Browse files
hvubrenetapopova
authored andcommitted
remaining review feedback
1 parent f2e0cae commit 15c4955

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

modules/ROOT/pages/errors/gql-errors/42NAB.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ error: syntax error or access rule violation - not supported standalone call. WH
66

77
== Explanation
88
A standalone call of a procedure does not support a `WHERE` clause, i.e., it does not support the filtering of the procedure result.
9-
Either remove the WHERE clause or add a RETURN clause after the call to it into an in-query call.
9+
Either remove the `WHERE` clause or add a `RETURN` clause after the call to turn it into an in-query call.
1010

1111
== Example scenario
1212
For example, trying to filter the result of the procedure `db.labels()` in a standalone call:
@@ -32,7 +32,7 @@ You can abstain from filtering to get a valid query:
3232
CALL db.labels() YIELD label
3333
----
3434

35-
However, to filter the result of the procedure `db.labels()` use an in-query call by adding a RETURN clause:
35+
However, if you still want to filter the result of the procedure `db.labels()`, you can add a `RETURN` clause:
3636

3737
.Query
3838
[source, cypher]

modules/ROOT/pages/errors/gql-errors/index.adoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1513,10 +1513,6 @@ Status description:: error: syntax error or access rule violation - system datab
15131513

15141514
Status description:: error: syntax error or access rule violation - incorrectly formatted graph reference. Incorrectly formatted graph reference `{ <<input>> }`. Expected a single quoted or unquoted identifier. Separate name parts should not be quoted individually.
15151515

1516-
=== xref:errors/gql-errors/42NAB.adoc[42NAB]
1517-
1518-
Status description:: error: syntax error or access rule violation - not supported standalone call. WHERE is not supported in standalone call. Use `CALL ... YIELD ... WHERE ... RETURN ...` instead.
1519-
15201516
=== xref:errors/gql-errors/42NFC.adoc[42NFC]
15211517

15221518
Status description:: error: syntax error or access rule violation - auth info validation error. Authentication and/or authorization could not be validated. See security logs for details.

0 commit comments

Comments
 (0)