Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added 42N3A, 42N3B, 42N3C and updated 42N39 #252

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion modules/ROOT/pages/errors/gql-errors.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,19 @@ Status description:: error: syntax error or access rule violation - specified nu

=== 42N39

Status description:: error: syntax error or access rule violation - incompatible return columns. All subqueries in a `UNION` clause must have the same return column names.
Status description:: error: syntax error or access rule violation - incompatible return column names. All `{ $context }` must have the same return column names. Use `AS` to ensure columns have the same name.

=== 42N3A

Status description:: error: syntax error or access rule violation - incompatible conditional query. All `{ $context }` need to either return rows or update the graph.

=== 42N3B

Status description:: error: syntax error or access rule violation - incompatible number of return columns. All `{ $context }` must return the same number of columns.

=== 42N3C

Status description:: error: syntax error or access rule violation - invalid use of 'CALL { ... }'. Not possible to enclose `{ $clause }` in 'CALL { ... }'. Use 'CALL () { ... }' instead.

=== 42N40

Expand Down