Skip to content

Commit ac5ff6a

Browse files
NataliaIvakinaHunternessrenetapopovaOliviaYtterbrinksherfert
authored
Publish 2025.07 (#364)
Co-authored-by: Therese Magnusson <[email protected]> Co-authored-by: Reneta Popova <[email protected]> Co-authored-by: Olivia Ytterbrink <[email protected]> Co-authored-by: Satia Herfert <[email protected]> Co-authored-by: JoelBergstrand <[email protected]> Co-authored-by: Louise Berglund <[email protected]>
1 parent 0e2971f commit ac5ff6a

File tree

22 files changed

+263
-30
lines changed

22 files changed

+263
-30
lines changed

antora.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: status-codes
22
title: Status Codes for Errors & Notifications
3-
version: '2025.06'
3+
version: '2025.07'
44
start_page: ROOT:index.adoc
55
nav:
66
- modules/ROOT/content-nav.adoc
77
asciidoc:
88
attributes:
99
page-origin-private: false
10-
neo4j-version: '2025.06'
11-
neo4j-version-exact: '2025.06.2'
12-
neo4j-buildnumber: '2025.06'
10+
neo4j-version: '2025.07'
11+
neo4j-version-exact: '2025.07.0'
12+
neo4j-buildnumber: '2025.07'

modules/ROOT/content-nav.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@
141141
**** xref:errors/gql-errors/22NA7.adoc[]
142142
**** xref:errors/gql-errors/22NA8.adoc[]
143143
**** xref:errors/gql-errors/22NA9.adoc[]
144+
**** xref:errors/gql-errors/22NAA.adoc[]
145+
**** xref:errors/gql-errors/22NAB.adoc[]
144146
**** xref:errors/gql-errors/22NB0.adoc[]
145147
**** xref:errors/gql-errors/22NB1.adoc[]
146148
**** xref:errors/gql-errors/22NB2.adoc[]
@@ -254,6 +256,8 @@
254256
**** xref:errors/gql-errors/42I60.adoc[]
255257
**** xref:errors/gql-errors/42I61.adoc[]
256258
**** xref:errors/gql-errors/42I62.adoc[]
259+
**** xref:errors/gql-errors/42I63.adoc[]
260+
**** xref:errors/gql-errors/42I64.adoc[]
257261
**** xref:errors/gql-errors/42N00.adoc[]
258262
**** xref:errors/gql-errors/42N01.adoc[]
259263
**** xref:errors/gql-errors/42N02.adoc[]

modules/ROOT/pages/errors/gql-errors/22N69.adoc

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,27 @@
1+
:page-role: changed-2025.07
2+
13
= 22N69
24

35
== Status description
4-
error: data exception - index does not exist. The index specified by `{ <<idxDescrOrName>> }` does not exist.
6+
error: data exception - index does not exist. The index `{ <<idxDescrOrName>> }` does not exist.
7+
8+
9+
== Example scenario
10+
11+
For example, try to drop a non-existing index:
12+
13+
[source,cypher]
14+
----
15+
DROP INDEX `nonExisting`
16+
----
17+
18+
You will receive an error with GQLSTATUS xref:errors/gql-errors/50N10.adoc[50N10].
19+
This error has a cause with GQLSTATUS 22N69 and status description:
20+
21+
[source]
22+
----
23+
error: data exception - index does not exist. The index 'nonExisting' does not exist.
24+
----
525

626

727
ifndef::backend-pdf[]

modules/ROOT/pages/errors/gql-errors/22N71.adoc

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,33 @@
1+
:page-role: changed-2025.07
2+
13
= 22N71
24

35
== Status description
4-
error: data exception - index with the same name already exists. An index with the same name already exists: `{ <<idx>> }`.
6+
error: data exception - duplicated index name. An index with the same name already exists: `{ <<idx>> }`.
7+
8+
9+
== Example scenario
10+
11+
For example, try to create an index when there is another existing index with that name:
12+
13+
Given:
14+
[source,cypher]
15+
----
16+
CREATE INDEX `myIndex` FOR (n:Person) ON (n.name)
17+
----
18+
19+
Then, when attempting to create:
20+
[source,cypher]
21+
----
22+
CREATE INDEX `myIndex` FOR (n:Book) ON (n.title)
23+
----
24+
25+
You will receive an error with GQLSTATUS 22N71 and status description:
26+
27+
[source]
28+
----
29+
error: data exception - duplicated index name. An index with the same name already exists: `myIndex`
30+
----
531

632

733
ifndef::backend-pdf[]

modules/ROOT/pages/errors/gql-errors/22NA0.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= 22NA0
22

33
== Status description
4-
error: data exception - invalid property based access control rule. Failed to administer property rule.
4+
error: data exception - invalid property-based access control rule. Failed to administer property rule.
55

66
ifndef::backend-pdf[]
77
[discrete.glossary]

modules/ROOT/pages/errors/gql-errors/22NA1.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
== Status description
5-
error: data exception - invalid property based access control rule involving non-commutative expressions. The property `{ <<propKey>> }` must appear on the left hand side of the `{ <<operation>> }` operator.
5+
error: data exception - invalid property-based access control rule involving non-commutative expressions. The property `{ <<propKey>> }` must appear on the left hand side of the `{ <<operation>> }` operator.
66

77

88
ifndef::backend-pdf[]

modules/ROOT/pages/errors/gql-errors/22NA2.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
== Status description
5-
error: data exception - invalid property based access control rule involving multiple properties. The expression: `{ <<expr>> }` is not supported. Property rules can only contain one property.
5+
error: data exception - invalid property-based access control rule involving multiple properties. The expression: `{ <<expr>> }` is not supported. Property rules can only contain one property.
66

77

88
ifndef::backend-pdf[]

modules/ROOT/pages/errors/gql-errors/22NA3.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
== Status description
44

5-
error: data exception - invalid property based access control rule involving NaN. 'NaN' is not supported for property-based access control.
5+
error: data exception - invalid property-based access control rule involving NaN. 'NaN' is not supported for property-based access control.
66

77

88

modules/ROOT/pages/errors/gql-errors/22NA4.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= 22NA4
22

33
== Status description
4-
error: data exception - invalid property based access control rule involving comparison with `NULL`. The property value access rule pattern `{ <<pred>> }` always evaluates to `NULL`.
4+
error: data exception - invalid property-based access control rule involving comparison with `NULL`. The property value access rule pattern `{ <<pred>> }` always evaluates to `NULL`.
55

66
ifndef::backend-pdf[]
77
[discrete.glossary]

modules/ROOT/pages/errors/gql-errors/22NA5.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= 22NA5
22

33
== Status description
4-
error: data exception - invalid property based access control rule involving `IS NULL`. The property value access rule pattern `{ <<pred>> }` always evaluates to `NULL`. Use `IS NULL` instead.
4+
error: data exception - invalid property-based access control rule involving `IS NULL`. The property value access rule pattern `{ <<pred>> }` always evaluates to `NULL`. Use `IS NULL` instead.
55

66
ifndef::backend-pdf[]
77
[discrete.glossary]

0 commit comments

Comments
 (0)