Skip to content

Commit d0175fa

Browse files
cleanup
1 parent 40c463b commit d0175fa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

modules/ROOT/pages/syntax/operators.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ This page contains an overview of the available Cypher operators.
1212
| xref::syntax/operators.adoc#query-operators-aggregation[Aggregation operators] | `DISTINCT`
1313
| xref::syntax/operators.adoc#query-operators-property[Property operators] | `.` for static property access, `[]` for dynamic property access, `=` for replacing all properties, `+=` for mutating specific properties
1414
| xref::syntax/operators.adoc#query-operators-map[Map operators] | `.` for static value access by key, `[]` for dynamic value access by key
15-
| xref::syntax/operators.adoc#query-operators-list[List operators] | `+` and `\|\|` (list concatenation), `IN` to check existence of an element in a list, `[]` for accessing element(s) dynamically
1615
|===
1716

1817

modules/ROOT/pages/values-and-types/lists.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ RETURN n.listProperty AS homogenousListProperty
234234
It is not, however, possible to store heterogeneous lists as properties.
235235

236236
.Not allowed - store heterogenous list as a property
237-
[source, cypher]
237+
[source, cypher, role=test-fail]
238238
----
239239
CREATE (n:Label)
240240
SET n.listProperty = [1, "hello", .45, date()]

0 commit comments

Comments
 (0)