Skip to content

Commit 9ecfc40

Browse files
small fixes (#1249)
1 parent 1c41f88 commit 9ecfc40

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
@@ -5040,7 +5040,7 @@ label:removed[]
50405040
extract()
50415041
----
50425042
a|
5043-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5043+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
50445044

50455045
a|
50465046
label:function[]
@@ -5050,7 +5050,7 @@ label:removed[]
50505050
filter()
50515051
----
50525052
a|
5053-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5053+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
50545054

50555055
a|
50565056
label:functionality[]
@@ -5415,7 +5415,7 @@ label:deprecated[]
54155415
extract()
54165416
----
54175417
a|
5418-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5418+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
54195419

54205420
a|
54215421
label:function[]
@@ -5425,7 +5425,7 @@ label:deprecated[]
54255425
filter()
54265426
----
54275427
a|
5428-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5428+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
54295429
|===
54305430

54315431

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

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

209-
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.
209+
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.
210210

211211
.List comprehension with `STRING` concatenation on `LIST` items
212212
[source, cypher]

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/combined-queries.adoc[`UNION`] query.
577577

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

0 commit comments

Comments
 (0)