Skip to content

Commit 9a07344

Browse files
fix broken xrefs (neo4j#1380)
1 parent fd0f631 commit 9a07344

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

modules/ROOT/pages/clauses/create.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ If you intend to add a label, use the xref:clauses/set.adoc#set-set-a-label-on-a
9595

9696
[[reusing-variables-properties]]
9797
== Reusing variables in properties
98-
The value that can be assigned to a node's or a relationship's property can be defined by an xref::syntax/expressions.adoc[expression].
98+
The value that can be assigned to a node's or a relationship's property can be defined by an xref::expressions/index.adoc[expression].
9999

100100
////
101101
.Parameters

modules/ROOT/pages/clauses/match.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ RETURN actors.name AS actor, movieCount, collect(movies.title) AS movies
493493
<1> The `Person` and `Movie` nodes matched in this step are stored in variables, which are then passed on to the second row of the query.
494494
<2> The `movies` variable is implicitly imported by its occurrence in the `count()` function.
495495
The `WITH` clause explicitly imports the `actors` variable.
496-
<3> An xref:clauses/order-by.adoc[`ORDER BY`] clause orders the results by `movieCount` in descending order, ensuring that the `Person` with the highest number of movies appears at the top, and xref:clauses/limit.adoc[`LIMIT] 1` ensures that all other `Person` nodes are discarded.
496+
<3> An xref:clauses/order-by.adoc[`ORDER BY`] clause orders the results by `movieCount` in descending order, ensuring that the `Person` with the highest number of movies appears at the top, and xref:clauses/limit.adoc[`LIMIT`] `1` ensures that all other `Person` nodes are discarded.
497497
<4> The second `MATCH` clause finds all `Movie` nodes associated with the `Person` nodes currently bound to the `actors` variable.
498498

499499
[NOTE]

modules/ROOT/pages/clauses/remove.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Properties set: 1
6666
== Remove all properties
6767

6868
`REMOVE` cannot be used to remove all existing properties from a node or relationship.
69-
Instead, using xref::clauses/set.adoc#set-remove-properties-using-empty-map[`SET` with `=` and an empty map as the right operand] will clear all properties from the node or relationship.
69+
Instead, using xref::clauses/set.adoc#set-remove-properties-using-empty-map[`SET`] with `=` and an empty map as the right operand will clear all properties from the node or relationship.
7070

7171
[role=label--new-5.24]
7272
[[dynamic-remove-property]]
@@ -154,7 +154,7 @@ REMOVE n:$(label)
154154
RETURN n.name, labels(n)
155155
----
156156

157-
<1> xref:clauses/unwind.adoc[`UNWIND`] is used here to transform the list of labels from the xref:functions/list.adoc#functions-labels[`labels()]` function into separate rows, allowing subsequent operations to be performed on each label individually.
157+
<1> xref:clauses/unwind.adoc[`UNWIND`] is used here to transform the list of labels from the xref:functions/list.adoc#functions-labels[`labels()`] function into separate rows, allowing subsequent operations to be performed on each label individually.
158158

159159
.Result
160160
[role="queryresult",options="header,footer",cols="2*<m"]

modules/ROOT/pages/expressions/conditional-expressions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ implied equals (`=`) comparator.
110110
The supported comparators are:
111111

112112
* xref:expressions/predicates/comparison-operators.adoc[Regular Comparison Operators]: `+=+`, `+<>+`, `+<+`, `+>+`, `+<=+`, `+>=+`
113-
* xref:expressions/predicates/comparison-operators.adoc[`IS [NOT] NULL`]
113+
* xref:expressions/predicates/comparison-operators.adoc[`IS [NOT\] NULL`]
114114
* xref:expressions/predicates/type-predicate-expressions.adoc[Type predicate expressions]: `IS [NOT] TYPED <TYPE>` (Note that the form `IS [NOT] :: <TYPE>` is not accepted)
115115
* xref:expressions/predicates/string-operators.adoc[Normalization Predicate Expression]: `IS [NOT] NORMALIZED`
116116
* xref:expressions/predicates/string-operators.adoc[String Comparison Operators]: `STARTS WITH`, `ENDS WITH`, `=~` (regex matching)

modules/ROOT/pages/syntax/expressions.adoc

Whitespace-only changes.

0 commit comments

Comments
 (0)