Skip to content

Commit 3895945

Browse files
small fixes (neo4j#1249)
1 parent 900ce1d commit 3895945

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

modules/ROOT/pages/appendix/gql-conformance/additional-cypher.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Either the pattern already exists, or it needs to be created.
6969
| Cypher feature
7070
| Description
7171

72-
| xref:values-and-types/lists.adoc#cypher-list-comprehension[List comprehension]
72+
| xref:expressions/list-expressions.adoc#list-comprehension[List comprehension]
7373
| Syntactic construct for creating a `LIST` based on existing lists.
7474

7575
| xref:values-and-types/maps.adoc#cypher-map-comprehension[Map projection]

modules/ROOT/pages/clauses/remove.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ FOREACH (i IN propertyKeys | REMOVE n[i]) // <2>
9393
RETURN n.name, keys(n);
9494
----
9595

96-
<1> The xref:functions/list.adoc#functions-keys[keys()] function retrieves all property keys of the matched nodes, and a xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension] filters these keys to include only those that contain the substring "Test", assigning the resulting list to the variable `propertyKeys`.
96+
<1> The xref:functions/list.adoc#functions-keys[keys()] function retrieves all property keys of the matched nodes, and a xref:expressions/list-expressions.adoc#list-comprehension[list comprehension] filters these keys to include only those that contain the substring "Test", assigning the resulting list to the variable `propertyKeys`.
9797
<2> The xref:clauses/foreach.adoc[`FOREACH`] clause iterates over each key in the `propertyKeys` list and removes the corresponding property using the `REMOVE` clause.
9898

9999
All properties with the word "Test" in them are removed:

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5039,7 +5039,7 @@ label:removed[]
50395039
extract()
50405040
----
50415041
a|
5042-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5042+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
50435043

50445044
a|
50455045
label:function[]
@@ -5049,7 +5049,7 @@ label:removed[]
50495049
filter()
50505050
----
50515051
a|
5052-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5052+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
50535053

50545054
a|
50555055
label:functionality[]
@@ -5414,7 +5414,7 @@ label:deprecated[]
54145414
extract()
54155415
----
54165416
a|
5417-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5417+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
54185418

54195419
a|
54205420
label:function[]
@@ -5424,7 +5424,7 @@ label:deprecated[]
54245424
filter()
54255425
----
54265426
a|
5427-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5427+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
54285428
|===
54295429

54305430

modules/ROOT/pages/expressions/string-operators.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ RETURN 'My favorite fruits are: ' || coalesce(reduce(acc = head(list), item IN t
218218
1+d|Rows: 3
219219
|===
220220

221-
Additionally, xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension] allows concatenating a `STRING` value to each item in a `LIST` to generate a new `LIST` of modified `STRING` values.
221+
Additionally, xref:expressions/list-expressions.adoc#list-comprehension[list comprehension] allows concatenating a `STRING` value to each item in a `LIST` to generate a new `LIST` of modified `STRING` values.
222222

223223
.List comprehension with `STRING` concatenation on `LIST` items
224224
// tag::expressions_string_concatenation_concatenate_list_comprehension[]

modules/ROOT/pages/genai-integrations.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ CALL db.create.setNodeVectorProperty(moviesList[index], 'embedding', vector) //
171171
----
172172
173173
<1> xref:functions/aggregating.adoc#functions-collect[Collect] all 20 `Movie` nodes into a `LIST<NODE>`.
174-
<2> Use a xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension] (`[]`) to extract the `title` and `plot` properties of the movies in `moviesList` into a new `LIST<STRING>`.
174+
<2> Use a xref:expressions/list-expressions.adoc#list-comprehension[list comprehension] (`[]`) to extract the `title` and `plot` properties of the movies in `moviesList` into a new `LIST<STRING>`.
175175
<3> `db.create.setNodeVectorProperty` is run for each `vector` returned by `genai.vector.encodeBatch`, and stores that vector as a property named `embedding` on the corresponding node.
176176
====
177177

modules/ROOT/pages/subqueries/call-subquery.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ RETURN
573573
[[call-post-union]]
574574
== Post-union processing
575575

576-
Call subqueries can be used to further process the results of a xref:queries/combined-queries.adoc[] query.
576+
Call subqueries can be used to further process the results of a xref:queries/composed-queries/combined-queries.adoc[`UNION`] query.
577577

578578
.Using `UNION` within a `CALL` subquery
579579
====

0 commit comments

Comments
 (0)