Skip to content
Merged
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
36 changes: 34 additions & 2 deletions modules/ROOT/pages/errors/gql-errors.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Status description:: error: connection exception - database unavailable. The dat

=== 08N10

Status description:: error: connection exception - invalid server state. The server is not in a state that can process a message of type: `{ $boltMsgType }`.
Status description:: error: connection exception - invalid server state. Message `{ $msg }` cannot be handled by session in the `{ $boltServerState }` state.

=== 08N11

Expand All @@ -95,6 +95,18 @@ Status description:: error: connection exception - alias chains are not permitte

Status description:: error: connection exception - no such routing policy. Policy definition of the routing policy `{ $routingPolicy }` could not be found. Verify that the spelling is correct.

=== 08N16

Status description:: error: connection exception - general driver client error. Remote execution failed with message `{ $msg }`.

=== 08N17

Status description:: error: connection exception - general driver transient error. Remote execution failed with message `{ $msg }`.

=== 08N18

Status description:: error: connection exception - general driver database error. Remote execution failed with message `{ $msg }`.

== Data exceptions

Database exceptions occur when a client request contains the wrong format, types, or other unsupported input.
Expand Down Expand Up @@ -221,7 +233,7 @@ Status description:: error: data exception - unsupported rounding mode. Unknown

=== 22N27

Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $variable }`. Expected to be `{ $valueTypeList }`.
Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $context }`. Expected to be `{ $valueTypeList }`.

// === 22N28

Expand Down Expand Up @@ -535,6 +547,10 @@ Status description:: error: data exception - parsing JSON failure. Underlying er

// Status description:: error: data exception - invalid property based access control rule involving WHERE and IS NULL. The property value access rule pattern `{ $pred }` always evaluates to 'NULL'. Use `WHERE' syntax in combination with `IS NULL` instead.

=== 22NB1

Status description:: error: data exception - type mismatch. Type mismatch: expected to be `{ $valueTypeList }` but was `{ $input }`.

// === 22NFF

// Status description:: error: data exception - referent does not exist. The referent of the specified reference does not exist.
Expand Down Expand Up @@ -957,6 +973,10 @@ Status description:: error: general processing exception - internal error. Inter

Status description:: error: general processing exception - deadlock detected. Deadlock detected while trying to acquire locks. See log for more details.

== 50N06

Status description:: error: general processing exception - remote execution client error. Remote execution failed. See cause for more details.

=== 50N07

Status description:: error: general processing exception - execution failed. Execution failed. See cause and debug log for details.
Expand All @@ -974,6 +994,14 @@ Status description:: error: general processing exception - constraint creation f

Status description:: error: general processing exception - constraint drop failed. Unable to drop `{ $constrDescrOrName }`.

== 50N16

Status description:: error: general processing exception - remote execution transient error. Remote execution failed. See cause for more details.

== 50N17

Status description:: error: general processing exception - remote execution database error. Remote execution failed. See cause for more details.

=== 50N42

Status description:: error: general processing exception - unexpected error. Unexpected error has occurred. See debug log for details.
Expand Down Expand Up @@ -1243,6 +1271,10 @@ Status description:: error: system configuration or operation exception - system

Status description:: error: system configuration or operation exception - bolt is not enabled. Cannot get routing table for `{ $db }` because Bolt is not enabled. Please update your configuration such that 'server.bolt.enabled' is set to true.

=== 51N71

Status description:: error: system configuration or operation exception - unsupported operation of a sharded database. Feature: `{ $feat }` is not available in a sharded database.

== Procedure exception

Procedure exceptions occur when there is an error in executing a procedure, such as when the procedure execution fails due to a client error, when the procedure cannot be invoked on a primary, when the number of arguments to checkConnectivity is invalid, etc.
Expand Down