You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
5
+
6
+
== Explanation
7
+
As of Cypher 25, database names and aliases cannot include name parts that are quoted individually.
8
+
Either the whole name must be quoted, or the whole name must be unquoted.
9
+
10
+
== Example scenario
11
+
For example, try to create a database with :
12
+
13
+
[source,cypher]
14
+
----
15
+
CREATE DATABASE `foo`.`bar`
16
+
----
17
+
18
+
An error will be thrown with GQLSTATUS 42NAA and the status description:
19
+
20
+
[source]
21
+
----
22
+
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.
23
+
----
24
+
25
+
In this example scenario, the correct quoting would either be
error: system configuration or operation exception - upgrade failed. The upgrade to a new Neo4j version failed.
6
+
7
+
== Explanation
8
+
This error code can occur during a dbms upgrade to a new Neo4j version, in the rare case that something in the user's setup or dbms environment prevented the dbms from upgrading.
9
+
The error will be accompanied by a cause with a more concrete GQLSTATUS, describing what the user needs to change before retrying the upgrade.
0 commit comments