Skip to content

Commit 7c88c78

Browse files
small fixes (neo4j#1249)
1 parent 56e164d commit 7c88c78

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
@@ -92,7 +92,7 @@ FOREACH (i IN propertyKeys | REMOVE n[i]) // <2>
9292
RETURN n.name, keys(n);
9393
----
9494

95-
<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`.
95+
<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`.
9696
<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.
9797

9898
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
@@ -5370,7 +5370,7 @@ label:removed[]
53705370
extract()
53715371
----
53725372
a|
5373-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5373+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
53745374

53755375
a|
53765376
label:function[]
@@ -5380,7 +5380,7 @@ label:removed[]
53805380
filter()
53815381
----
53825382
a|
5383-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5383+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
53845384

53855385
a|
53865386
label:functionality[]
@@ -5745,7 +5745,7 @@ label:deprecated[]
57455745
extract()
57465746
----
57475747
a|
5748-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5748+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
57495749

57505750
a|
57515751
label:function[]
@@ -5755,7 +5755,7 @@ label:deprecated[]
57555755
filter()
57565756
----
57575757
a|
5758-
Replaced by xref:values-and-types/lists.adoc#cypher-list-comprehension[list comprehension].
5758+
Replaced by xref:expressions/list-expressions.adoc#list-comprehension[list comprehension].
57595759
|===
57605760

57615761

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
@@ -168,7 +168,7 @@ CALL db.create.setNodeVectorProperty(moviesList[index], 'embedding', vector) //
168168
----
169169
170170
<1> xref:functions/aggregating.adoc#functions-collect[Collect] all 20 `Movie` nodes into a `LIST<NODE>`.
171-
<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>`.
171+
<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>`.
172172
<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.
173173
====
174174

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ RETURN
618618
[[call-post-union]]
619619
== Post-union processing
620620

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

623623
.Using `UNION` within a `CALL` subquery
624624
====

0 commit comments

Comments
 (0)