Skip to content

Commit 455f692

Browse files
committed
editorial updates
1 parent d309505 commit 455f692

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,23 @@ Either the whole name must be quoted, or the whole name must be unquoted.
99
A recommended approach, which is consistent between different commands and Cypher versions, is to send in the database name or alias as a parameter rather than a string literal.
1010

1111
== Example scenario
12-
For example, try to create a database with
12+
For example, try to create a database with using the following Cypher 25 command:
1313

1414
[source,cypher]
1515
----
1616
CYPHER 25 CREATE ALIAS `foo`.`bar` FOR DATABASE baz
1717
----
1818

19-
An error will be thrown with GQLSTATUS 42NAA and the status description
19+
An error will be thrown with GQLSTATUS 42NAA and the following status description:
2020

2121
[source]
2222
----
2323
error: syntax error or access rule violation - incorrectly formatted graph reference. Incorrectly formatted graph reference '`foo`.`bar`'. Expected a single quoted or unquoted identifier. Separate name parts should not be quoted individually.
2424
----
2525

26-
In this example scenario, the preferred way is to send in the alias name as a parameter
26+
== Possible solutions
27+
28+
To resolve this issue, the preferred way is to send in the alias name as a parameter:
2729

2830
.Parameters
2931
[source, parameters]

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1442,6 +1442,10 @@ Status description:: error: syntax error or access rule violation - invalid refe
14421442

14431443
Status description:: error: syntax error or access rule violation - system database procedure rules. The system database supports a restricted set of Cypher clauses. The supported clause structure for procedure calls is: `CALL`, `YIELD`, `RETURN`. `YIELD` and `RETURN` clauses are optional. The order of the clauses is fixed and each can only occur once.
14441444

1445+
=== xref:errors/gql-errors/42NAA.adoc[42NAA]
1446+
1447+
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.
1448+
14451449
=== xref:errors/gql-errors/42NFC.adoc[42NFC]
14461450

14471451
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.
@@ -1842,6 +1846,10 @@ Status description:: error: system configuration or operation exception - transa
18421846

18431847
Status description:: error: system configuration or operation exception - maximum number of transactions reached. Failed to start a new transaction. The limit of concurrent transactions is reached. Increase the number of concurrent transactions using `{ <<cfgSetting>> }` in the neo4j.conf file.
18441848

1849+
=== xref:errors/gql-errors/51N76.adoc[51N76]
1850+
1851+
Status description:: error: system configuration or operation exception - upgrade failed. The upgrade to a new Neo4j version failed.
1852+
18451853

18461854
[[procedure-exceptions]]
18471855
== Procedure exceptions

0 commit comments

Comments
 (0)