diff --git a/antora.yml b/antora.yml index 86edd35a..e58ac3ab 100644 --- a/antora.yml +++ b/antora.yml @@ -1,12 +1,12 @@ name: status-codes title: Status Codes for Errors & Notifications -version: '2025.06' +version: '2025.07' start_page: ROOT:index.adoc nav: - modules/ROOT/content-nav.adoc asciidoc: attributes: page-origin-private: false - neo4j-version: '2025.06' - neo4j-version-exact: '2025.06.2' - neo4j-buildnumber: '2025.06' + neo4j-version: '2025.07' + neo4j-version-exact: '2025.07.0' + neo4j-buildnumber: '2025.07' diff --git a/modules/ROOT/content-nav.adoc b/modules/ROOT/content-nav.adoc index 78d96bfc..579b914e 100644 --- a/modules/ROOT/content-nav.adoc +++ b/modules/ROOT/content-nav.adoc @@ -141,6 +141,8 @@ **** xref:errors/gql-errors/22NA7.adoc[] **** xref:errors/gql-errors/22NA8.adoc[] **** xref:errors/gql-errors/22NA9.adoc[] +**** xref:errors/gql-errors/22NAA.adoc[] +**** xref:errors/gql-errors/22NAB.adoc[] **** xref:errors/gql-errors/22NB0.adoc[] **** xref:errors/gql-errors/22NB1.adoc[] **** xref:errors/gql-errors/22NB2.adoc[] @@ -254,6 +256,8 @@ **** xref:errors/gql-errors/42I60.adoc[] **** xref:errors/gql-errors/42I61.adoc[] **** xref:errors/gql-errors/42I62.adoc[] +**** xref:errors/gql-errors/42I63.adoc[] +**** xref:errors/gql-errors/42I64.adoc[] **** xref:errors/gql-errors/42N00.adoc[] **** xref:errors/gql-errors/42N01.adoc[] **** xref:errors/gql-errors/42N02.adoc[] diff --git a/modules/ROOT/pages/errors/gql-errors/22N69.adoc b/modules/ROOT/pages/errors/gql-errors/22N69.adoc index 4ee05c3b..7f4dd68d 100644 --- a/modules/ROOT/pages/errors/gql-errors/22N69.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22N69.adoc @@ -1,7 +1,27 @@ +:page-role: changed-2025.07 + = 22N69 == Status description -error: data exception - index does not exist. The index specified by `{ <> }` does not exist. +error: data exception - index does not exist. The index `{ <> }` does not exist. + + +== Example scenario + +For example, try to drop a non-existing index: + +[source,cypher] +---- +DROP INDEX `nonExisting` +---- + +You will receive an error with GQLSTATUS xref:errors/gql-errors/50N10.adoc[50N10]. +This error has a cause with GQLSTATUS 22N69 and status description: + +[source] +---- +error: data exception - index does not exist. The index 'nonExisting' does not exist. +---- ifndef::backend-pdf[] diff --git a/modules/ROOT/pages/errors/gql-errors/22N71.adoc b/modules/ROOT/pages/errors/gql-errors/22N71.adoc index c13a5635..c6501340 100644 --- a/modules/ROOT/pages/errors/gql-errors/22N71.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22N71.adoc @@ -1,7 +1,33 @@ +:page-role: changed-2025.07 + = 22N71 == Status description -error: data exception - index with the same name already exists. An index with the same name already exists: `{ <> }`. +error: data exception - duplicated index name. An index with the same name already exists: `{ <> }`. + + +== Example scenario + +For example, try to create an index when there is another existing index with that name: + +Given: +[source,cypher] +---- +CREATE INDEX `myIndex` FOR (n:Person) ON (n.name) +---- + +Then, when attempting to create: +[source,cypher] +---- +CREATE INDEX `myIndex` FOR (n:Book) ON (n.title) +---- + +You will receive an error with GQLSTATUS 22N71 and status description: + +[source] +---- +error: data exception - duplicated index name. An index with the same name already exists: `myIndex` +---- ifndef::backend-pdf[] diff --git a/modules/ROOT/pages/errors/gql-errors/22NA0.adoc b/modules/ROOT/pages/errors/gql-errors/22NA0.adoc index 7ff969ae..fdbd3ee7 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NA0.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NA0.adoc @@ -1,7 +1,7 @@ = 22NA0 == Status description -error: data exception - invalid property based access control rule. Failed to administer property rule. +error: data exception - invalid property-based access control rule. Failed to administer property rule. ifndef::backend-pdf[] [discrete.glossary] diff --git a/modules/ROOT/pages/errors/gql-errors/22NA1.adoc b/modules/ROOT/pages/errors/gql-errors/22NA1.adoc index 2c2bf5e9..8cc5da29 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NA1.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NA1.adoc @@ -2,7 +2,7 @@ == Status description -error: data exception - invalid property based access control rule involving non-commutative expressions. The property `{ <> }` must appear on the left hand side of the `{ <> }` operator. +error: data exception - invalid property-based access control rule involving non-commutative expressions. The property `{ <> }` must appear on the left hand side of the `{ <> }` operator. ifndef::backend-pdf[] diff --git a/modules/ROOT/pages/errors/gql-errors/22NA2.adoc b/modules/ROOT/pages/errors/gql-errors/22NA2.adoc index d86467cf..ee06a256 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NA2.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NA2.adoc @@ -2,7 +2,7 @@ == Status description -error: data exception - invalid property based access control rule involving multiple properties. The expression: `{ <> }` is not supported. Property rules can only contain one property. +error: data exception - invalid property-based access control rule involving multiple properties. The expression: `{ <> }` is not supported. Property rules can only contain one property. ifndef::backend-pdf[] diff --git a/modules/ROOT/pages/errors/gql-errors/22NA3.adoc b/modules/ROOT/pages/errors/gql-errors/22NA3.adoc index 8888b23d..a0388955 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NA3.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NA3.adoc @@ -2,7 +2,7 @@ == Status description -error: data exception - invalid property based access control rule involving NaN. 'NaN' is not supported for property-based access control. +error: data exception - invalid property-based access control rule involving NaN. 'NaN' is not supported for property-based access control. diff --git a/modules/ROOT/pages/errors/gql-errors/22NA4.adoc b/modules/ROOT/pages/errors/gql-errors/22NA4.adoc index c8aec5a2..761ea4bc 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NA4.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NA4.adoc @@ -1,7 +1,7 @@ = 22NA4 == Status description -error: data exception - invalid property based access control rule involving comparison with `NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. +error: data exception - invalid property-based access control rule involving comparison with `NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. ifndef::backend-pdf[] [discrete.glossary] diff --git a/modules/ROOT/pages/errors/gql-errors/22NA5.adoc b/modules/ROOT/pages/errors/gql-errors/22NA5.adoc index 4d6f947b..341fadf9 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NA5.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NA5.adoc @@ -1,7 +1,7 @@ = 22NA5 == Status description -error: data exception - invalid property based access control rule involving `IS NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `IS NULL` instead. +error: data exception - invalid property-based access control rule involving `IS NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `IS NULL` instead. ifndef::backend-pdf[] [discrete.glossary] diff --git a/modules/ROOT/pages/errors/gql-errors/22NA6.adoc b/modules/ROOT/pages/errors/gql-errors/22NA6.adoc index 5774f4cf..7787328c 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NA6.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NA6.adoc @@ -1,7 +1,7 @@ = 22NA6 == Status description -error: data exception - invalid property based access control rule involving `IS NOT NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `IS NOT NULL` instead. +error: data exception - invalid property-based access control rule involving `IS NOT NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `IS NOT NULL` instead. ifndef::backend-pdf[] [discrete.glossary] diff --git a/modules/ROOT/pages/errors/gql-errors/22NA7.adoc b/modules/ROOT/pages/errors/gql-errors/22NA7.adoc index 91c215e7..0b5a1cad 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NA7.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NA7.adoc @@ -2,7 +2,7 @@ == Status description -error: data exception - invalid property based access control rule involving nontrivial predicates. The expression: `{ <> }` is not supported. Only single, literal-based predicate expressions are allowed for property-based access control. +error: data exception - invalid property-based access control rule involving nontrivial predicates. The expression: `{ <> }` is not supported. Only single, literal-based predicate expressions are allowed for property-based access control. diff --git a/modules/ROOT/pages/errors/gql-errors/22NAA.adoc b/modules/ROOT/pages/errors/gql-errors/22NAA.adoc new file mode 100644 index 00000000..48c5cefd --- /dev/null +++ b/modules/ROOT/pages/errors/gql-errors/22NAA.adoc @@ -0,0 +1,28 @@ += 22NAA + +== Status description +error: data exception - invalid list for property-based access control rule. The expression `{ <> }` is not supported. Lists containing `{ <> }` values are not supported for property-based access control. + +== Example scenario + +For example, try to add a property-based access control rule including a list with a `NULL` type: + +[source,cypher] +---- +GRANT TRAVERSE ON GRAPH * FOR (n) WHERE n.prop1 IN ["string value", NULL] TO role +---- + +You will receive an error with GQLSTATUS xref:errors/gql-errors/22NA0.adoc[22NA0] and a cause with GQLSTATUS 22NAA and the following status description: + + +[source] +---- +error: data exception - invalid list for property-based access control rule. The expression 'n.prop1 IN ["string value", NULL]' is not supported. Lists containing NULL values are not supported for property-based access control. +---- + +ifndef::backend-pdf[] +[discrete.glossary] +== Glossary + +include::partial$glossary.adoc[] +endif::[] \ No newline at end of file diff --git a/modules/ROOT/pages/errors/gql-errors/22NAB.adoc b/modules/ROOT/pages/errors/gql-errors/22NAB.adoc new file mode 100644 index 00000000..b798b71d --- /dev/null +++ b/modules/ROOT/pages/errors/gql-errors/22NAB.adoc @@ -0,0 +1,28 @@ += 22NAB + +== Status description +error: data exception - mixed type list for property-based access control rule. The expression `{ <> }` is not supported. All elements in a list must be literals of the same type for property-based access control. + +== Example scenario + +For example, try to add a property-based access control rule that contains a list of mixed types: + +[source,cypher] +---- +GRANT TRAVERSE ON GRAPH * FOR (n) WHERE n.prop1 IN ["string value", 5] TO role +---- + +You will receive an error with GQLSTATUS xref:errors/gql-errors/22NA0.adoc[22NA0] and a cause with GQLSTATUS 22NAB and the following status description: + + +[source] +---- +error: data exception - mixed type list for property-based access control rule. The expression 'n.prop1 IN ["string value", 5]' is not supported. All elements in a list must be literals of the same type for property-based access control. +---- + +ifndef::backend-pdf[] +[discrete.glossary] +== Glossary + +include::partial$glossary.adoc[] +endif::[] \ No newline at end of file diff --git a/modules/ROOT/pages/errors/gql-errors/22NB0.adoc b/modules/ROOT/pages/errors/gql-errors/22NB0.adoc index 588b0d26..3ececfa4 100644 --- a/modules/ROOT/pages/errors/gql-errors/22NB0.adoc +++ b/modules/ROOT/pages/errors/gql-errors/22NB0.adoc @@ -1,7 +1,7 @@ = 22NB0 == Status description -error: data exception - invalid property based access control rule involving `WHERE` and `IS NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `WHERE` syntax in combination with `IS NULL` instead. +error: data exception - invalid property-based access control rule involving `WHERE` and `IS NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `WHERE` syntax in combination with `IS NULL` instead. ifndef::backend-pdf[] [discrete.glossary] diff --git a/modules/ROOT/pages/errors/gql-errors/42I63.adoc b/modules/ROOT/pages/errors/gql-errors/42I63.adoc new file mode 100644 index 00000000..390360b8 --- /dev/null +++ b/modules/ROOT/pages/errors/gql-errors/42I63.adoc @@ -0,0 +1,33 @@ += 42I63 + +== Status description +error: syntax error or access rule violation - wrong subclause order. `ORDER BY`, `{ <> }` and `LIMIT` can only be used in this order in `RETURN`. + +== Example scenario + +For example, try to use `ORDER BY` after `SKIP` and `LIMIT`: + +[source,cypher] +---- +UNWIND [3,5,1,3,7,10] AS x +RETURN x +SKIP 2 +ORDER BY x +---- + +You will receive an error with GQLSTATUS xref:errors/gql-errors/42000.adoc[42000]. +This error has a cause detailed in xref:errors/gql-errors/42I63.adoc[42I63] and status description: + + +[source] +---- +error: syntax error or access rule violation - wrong subclause order. `ORDER BY`, `SKIP` and `LIMIT` can only be used in this order in `RETURN`. +---- + + +ifndef::backend-pdf[] +[discrete.glossary] +== Glossary + +include::partial$glossary.adoc[] +endif::[] diff --git a/modules/ROOT/pages/errors/gql-errors/42I64.adoc b/modules/ROOT/pages/errors/gql-errors/42I64.adoc new file mode 100644 index 00000000..cc09712f --- /dev/null +++ b/modules/ROOT/pages/errors/gql-errors/42I64.adoc @@ -0,0 +1,37 @@ += 42I64 + +== Status description +error: syntax error or access rule violation - unsupported operation. `{ <> }` currently not supported after `+NEXT+` `{ <> }`. + +== Example scenario + +For example, when aggregating in a `UNION` query after a `NEXT`: + +[source,cypher] +---- +UNWIND [1, 2] AS x +RETURN x + +NEXT + +RETURN COUNT(x) +UNION ALL +RETURN COUNT(x) +---- + +You will receive an error with GQLSTATUS xref:errors/gql-errors/42001.adoc[42001]. +This error has a cause detailed in xref:errors/gql-errors/42I64.adoc[42I64] and status description: + + +[source] +---- +error: syntax error or access rule violation - unsupported operation. Aggregations are currently not supported in `NEXT` when used in a `UNION`. +---- + + +ifndef::backend-pdf[] +[discrete.glossary] +== Glossary + +include::partial$glossary.adoc[] +endif::[] \ No newline at end of file diff --git a/modules/ROOT/pages/errors/gql-errors/51N52.adoc b/modules/ROOT/pages/errors/gql-errors/51N52.adoc index f0af724f..b0f0d2c7 100644 --- a/modules/ROOT/pages/errors/gql-errors/51N52.adoc +++ b/modules/ROOT/pages/errors/gql-errors/51N52.adoc @@ -1,7 +1,13 @@ +:page-role: changed-2025.07 + = 51N52 == Status description -error: system configuration or operation exception - number of primaries out of range. Cannot alter database topology. Number of primaries `{ <> }` needs to be at least 1 and may not exceed `{ <> }`. +error: system configuration or operation exception - number of primaries out of range. Cannot `{ <> }` database topology. Number of primaries `{ <> }` needs to be at least 1 and may not exceed `{ <> }`. + +== Explanation + +This error occurs when trying to create or alter a database while providing a topology with primary count outside the supported range. ifndef::backend-pdf[] [discrete.glossary] diff --git a/modules/ROOT/pages/errors/gql-errors/51N53.adoc b/modules/ROOT/pages/errors/gql-errors/51N53.adoc index 33689ab8..010cbeb9 100644 --- a/modules/ROOT/pages/errors/gql-errors/51N53.adoc +++ b/modules/ROOT/pages/errors/gql-errors/51N53.adoc @@ -1,7 +1,13 @@ +:page-role: changed-2025.07 + = 51N53 == Status description -error: system configuration or operation exception - number of secondaries out of range. Cannot alter database topology. Number of secondaries `{ <> }` needs to be at least 0 and may not exceed `{ <> }`. +error: system configuration or operation exception - number of secondaries out of range. Cannot `{ <> }` database topology. Number of secondaries `{ <> }` needs to be at least 0 and may not exceed `{ <> }`. + +== Explanation + +This error occurs when trying to create or alter a database while providing a topology with secondary count outside the supported range. ifndef::backend-pdf[] [discrete.glossary] diff --git a/modules/ROOT/pages/errors/gql-errors/51N77.adoc b/modules/ROOT/pages/errors/gql-errors/51N77.adoc new file mode 100644 index 00000000..db251e0e --- /dev/null +++ b/modules/ROOT/pages/errors/gql-errors/51N77.adoc @@ -0,0 +1,20 @@ += 51N77 + +== Status description + +error: system configuration or operation exception - not supported in this store format. `{ <> }` is not supported in `{ <> }` store format. + +== Scenario + +This error code is used when the user tries to use a feature that is unsupported by the store format, e.g. writing a property with an unsupported data type. + +== Possible solution + +Use a supported data type, or use a different store format. + +ifndef::backend-pdf[] +[discrete.glossary] +== Glossary + +include::partial$glossary.adoc[] +endif::[] \ No newline at end of file diff --git a/modules/ROOT/pages/errors/gql-errors/index.adoc b/modules/ROOT/pages/errors/gql-errors/index.adoc index e1e914d4..fbfe1b1b 100644 --- a/modules/ROOT/pages/errors/gql-errors/index.adoc +++ b/modules/ROOT/pages/errors/gql-errors/index.adoc @@ -414,17 +414,19 @@ Status description:: error: data exception - duplicated constraint name. A const Status description:: error: data exception - dependent constraint managed individually. Dependent constraints cannot be managed individually and must be managed together with its graph type. +[role=label--changed-2025.07] === xref:errors/gql-errors/22N69.adoc[22N69] -Status description:: error: data exception - index does not exist. The index specified by `{ <> }` does not exist. +Status description:: error: data exception - index does not exist. The index `{ <> }` does not exist. === xref:errors/gql-errors/22N70.adoc[22N70] Status description:: error: data exception - equivalent index already exists. An equivalent index already exists: `{ <> }`. +[role=label--changed-2025.07] === xref:errors/gql-errors/22N71.adoc[22N71] -Status description:: error: data exception - index with the same name already exists. An index with the same name already exists: `{ <> }`. +Status description:: error: data exception - duplicated index name. An index with the same name already exists: `{ <> }`. === xref:errors/gql-errors/22N73.adoc[22N73] @@ -533,35 +535,35 @@ Status description:: error: data exception - wrong token during deserialization. === xref:errors/gql-errors/22NA0.adoc[22NA0] -Status description:: error: data exception - invalid property based access control rule. Failed to administer property rule. +Status description:: error: data exception - invalid property-based access control rule. Failed to administer property rule. === xref:errors/gql-errors/22NA1.adoc[22NA1] -Status description:: error: data exception - invalid property based access control rule involving non-commutative expressions. The property `{ <> }` must appear on the left hand side of the `{ <> }` operator. +Status description:: error: data exception - invalid property-based access control rule involving non-commutative expressions. The property `{ <> }` must appear on the left hand side of the `{ <> }` operator. === xref:errors/gql-errors/22NA2.adoc[22NA2] -Status description:: error: data exception - invalid property based access control rule involving multiple properties. The expression: `{ <> }` is not supported. Property rules can only contain one property. +Status description:: error: data exception - invalid property-based access control rule involving multiple properties. The expression: `{ <> }` is not supported. Property rules can only contain one property. === xref:errors/gql-errors/22NA3.adoc[22NA3] -Status description:: error: data exception - invalid property based access control rule involving NaN. 'NaN' is not supported for property-based access control. +Status description:: error: data exception - invalid property-based access control rule involving NaN. 'NaN' is not supported for property-based access control. === xref:errors/gql-errors/22NA4.adoc[22NA4] -Status description:: error: data exception - invalid property based access control rule involving comparison with `NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. +Status description:: error: data exception - invalid property-based access control rule involving comparison with `NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. === xref:errors/gql-errors/22NA5.adoc[22NA5] -Status description:: error: data exception - invalid property based access control rule involving `IS NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `IS NULL` instead. +Status description:: error: data exception - invalid property-based access control rule involving `IS NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `IS NULL` instead. === xref:errors/gql-errors/22NA6.adoc[22NA6] -Status description:: error: data exception - invalid property based access control rule involving `IS NOT NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `IS NOT NULL` instead. +Status description:: error: data exception - invalid property-based access control rule involving `IS NOT NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `IS NOT NULL` instead. === xref:errors/gql-errors/22NA7.adoc[22NA7] -Status description:: error: data exception - invalid property based access control rule involving nontrivial predicates. The expression: `{ <> }` is not supported. Only single, literal-based predicate expressions are allowed for property-based access control. +Status description:: error: data exception - invalid property-based access control rule involving nontrivial predicates. The expression: `{ <> }` is not supported. Only single, literal-based predicate expressions are allowed for property-based access control. === xref:errors/gql-errors/22NA8.adoc[22NA8] @@ -571,9 +573,17 @@ Status description:: error: data exception - parsing JSON failure. Underlying er Status description:: error: data exception - unexpected map entry. Invalid input. Unexpected key `{ <> }`, expected keys are `{ <> }`. +=== xref:errors/gql-errors/22NAA.adoc[22NAA] + +Status description:: error: data exception - invalid list for property-based access control rule. The expression `{ <> }` is not supported. Lists containing `{ <> }` values are not supported for property-based access control. + +=== xref:errors/gql-errors/22NAB.adoc[22NAB] + +Status description:: error: data exception - mixed type list for property-based access control rule. The expression `{ <> }` is not supported. All elements in a list must be literals of the same type for property-based access control. + === xref:errors/gql-errors/22NB0.adoc[22NB0] -Status description:: error: data exception - invalid property based access control rule involving `WHERE` and `IS NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `WHERE` syntax in combination with `IS NULL` instead. +Status description:: error: data exception - invalid property-based access control rule involving `WHERE` and `IS NULL`. The property value access rule pattern `{ <> }` always evaluates to `NULL`. Use `WHERE` syntax in combination with `IS NULL` instead. === xref:errors/gql-errors/22NB1.adoc[22NB1] @@ -1034,6 +1044,14 @@ Status description:: error: syntax error or access rule violation - missing LOOK Status description:: error: syntax error or access rule violation - unsupported distance metric. Unknown distance metric: `{ <> }`. +=== xref:errors/gql-errors/42I63.adoc[42I63] + +Status description:: error: syntax error or access rule violation - wrong subclause order. `ORDER BY`, `{ <> }` and `LIMIT` can only be used in this order in `RETURN`. + +=== xref:errors/gql-errors/42I64.adoc[42I64] + +Status description:: error: syntax error or access rule violation - unsupported operation. `{ <> }` currently not supported after `+NEXT+` `{ <> }`. + [role=label--changed-2025.03] === xref:errors/gql-errors/42N00.adoc[42N00] @@ -1758,13 +1776,15 @@ Status description:: error: system configuration or operation exception - cannot Status description:: error: system configuration or operation exception - cannot create database. Cannot create database `{ <> }`. +[role=label--changed-2025.07] === xref:errors/gql-errors/51N52.adoc[51N52] -Status description:: error: system configuration or operation exception - number of primaries out of range. Cannot alter database topology. Number of primaries `{ <> }` needs to be at least 1 and may not exceed `{ <> }`. +Status description:: error: system configuration or operation exception - number of primaries out of range. Cannot `{ <> }` database topology. Number of primaries `{ <> }` needs to be at least 1 and may not exceed `{ <> }`. +[role=label--changed-2025.07] === xref:errors/gql-errors/51N53.adoc[51N53] -Status description:: error: system configuration or operation exception - number of secondaries out of range. Cannot alter database topology. Number of secondaries `{ <> }` needs to be at least 0 and may not exceed `{ <> }`. +Status description:: error: system configuration or operation exception - number of secondaries out of range. Cannot `{ <> }` database topology. Number of secondaries `{ <> }` needs to be at least 0 and may not exceed `{ <> }`. === xref:errors/gql-errors/51N54.adoc[51N54] @@ -1854,6 +1874,10 @@ Status description:: error: system configuration or operation exception - maximu Status description:: error: system configuration or operation exception - upgrade failed. The upgrade to a new Neo4j version failed. +=== xref:errors/gql-errors/51N77.adoc[51N77] + +Status description:: error: system configuration or operation exception - not supported in this store format. `{ <> }` is not supported in `{ <> }` store format. + [[procedure-exceptions]] == Procedure exceptions diff --git a/modules/ROOT/partials/glossary.adoc b/modules/ROOT/partials/glossary.adoc index 9296009c..221620fa 100644 --- a/modules/ROOT/partials/glossary.adoc +++ b/modules/ROOT/partials/glossary.adoc @@ -117,6 +117,7 @@ [[serverType]]$serverType:: Server type, `PRIMARY` (primaryConstrained), `SECONDARY` (secondaryConstrained), or `NONE`. [[serverAddress]]$serverAddress:: Server address, for example, `localhost:20025`. [[sig]]$sig:: Procedure or function signature, for example, `date(input = DEFAULT_TEMPORAL_ARGUMENT :: ANY) :: DATE` +[[storeFormat]]$storeFormat:: Store format name. One of "aligned", "block", "standard", "high_limit". [[syntax]]$syntax:: Cypher syntax or keyword. [[temporal]]$temporal:: Temporal value, for example, `2025-02-18`. [[timeAmount]]$timeAmount:: Integral amount of time unit (a number).