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
Copy file name to clipboardExpand all lines: modules/ROOT/pages/errors/gql-errors/22NAA.adoc
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,23 @@
1
1
= 22NAA
2
2
3
3
== Status description
4
-
error: data exception - invalid list for propertybased access control rule. The expression `{ <<expr>> }` is not supported. Lists containing `{ <<exprType>> }` values are not supported for property-based access control.
4
+
error: data exception - invalid list for property-based access control rule. The expression `{ <<expr>> }` is not supported. Lists containing `{ <<exprType>> }` values are not supported for property-based access control.
5
5
6
6
== Example scenario
7
7
8
-
For example, try to add a propertybased access control rule including a list with a NULL type:
8
+
For example, try to add a property-based access control rule including a list with a `NULL` type:
9
9
10
10
[source,cypher]
11
11
----
12
12
GRANT TRAVERSE ON GRAPH * FOR (n) WHERE n.prop1 IN ["string value", NULL] TO role
13
13
----
14
14
15
-
You will receive an error with GQLSTATUS xref:errors/gql-errors/22NA0.adoc[22NA0].
16
-
This error will have a cause with GQLSTATUS 42NAA and the status description
15
+
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:
17
16
18
17
19
18
[source]
20
19
----
21
-
error: data exception - invalid list for propertybased 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.
20
+
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.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/errors/gql-errors/22NAB.adoc
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,18 @@
1
1
= 22NAB
2
2
3
3
== Status description
4
-
error: data exception - mixed type list for propertybased access control rule. The expression `{ <<expr>> }` is not supported. All elements in a list must be literals of the same type for property-based access control.
4
+
error: data exception - mixed type list for property-based access control rule. The expression `{ <<expr>> }` is not supported. All elements in a list must be literals of the same type for property-based access control.
5
5
6
6
== Example scenario
7
7
8
-
For example, try to add a propertybased access control rule including a list with mixed types:
8
+
For example, try to add a property-based access control rule that contains a list of mixed types:
9
9
10
10
[source,cypher]
11
11
----
12
12
GRANT TRAVERSE ON GRAPH * FOR (n) WHERE n.prop1 IN ["string value", 5] TO role
13
13
----
14
14
15
-
You will receive an error with GQLSTATUS xref:errors/gql-errors/22NA0.adoc[22NA0].
16
-
This error will have a cause with GQLSTATUS 42NAB and the status description
15
+
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:
0 commit comments