Skip to content

Commit 0038cb3

Browse files
fix broken anchors
1 parent c68ddfc commit 0038cb3

File tree

12 files changed

+13
-24
lines changed

12 files changed

+13
-24
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ As the size of the CSV file in this example is small, only a single separate tra
312312

313313
[NOTE]
314314
====
315-
`CALL { ... } IN TRANSACTIONS` is only allowed in xref::introduction/index.adoc#explicit-implicit-transactions[implicit transactions].
315+
`CALL { ... } IN TRANSACTIONS` is only allowed in xref::introduction/cypher-neo4j.adoc#explicit-implicit-transactions[implicit transactions].
316316
====
317317

318318

modules/ROOT/pages/clauses/delete.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,5 @@ Deleted 3 nodes, deleted 1 relationship
125125
[NOTE]
126126
====
127127
This query is not for deleting large amounts of data, but is useful when experimenting with small example datasets.
128-
When deleting large amounts of data, instead use xref::clauses/call-subquery.adoc#delete-with-call-in-transactions[CALL { ... } IN TRANSACTIONS].
128+
When deleting large amounts of data, instead use xref::clauses/call-subquery.adoc#_batching[CALL { ... } IN TRANSACTIONS].
129129
====

modules/ROOT/pages/clauses/order-by.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ CREATE
4040
[NOTE]
4141
====
4242
Strings that contain special characters can have inconsistent or non-deterministic ordering in Neo4j.
43-
For details, see xref::values-and-types/property-structural-composite.adoc#property-types-sip-note[Sorting of special characters].
4443
====
4544

4645
[[order-nodes-by-property]]

modules/ROOT/pages/clauses/transaction-clauses.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ a|A map containing all the parameters used by the query currently executing in t
8585
m|MAP
8686

8787
m|planner
88-
a|The name of the Cypher planner used to plan the query currently executing in this transaction, or an empty string if no query is currently executing. For details, see xref::query-tuning/index.adoc#cypher-planner[Cypher planner].
88+
a|The name of the Cypher planner used to plan the query currently executing in this transaction, or an empty string if no query is currently executing. For details, see xref:query-tuning/query-options.adoc#cypher-planner[Cypher planner].
8989
m|STRING
9090

9191
m|runtime
92-
a|The name of the Cypher runtime used by the query currently executing in this transaction, or an empty string if no query is currently executing. For details, see xref::query-tuning/index.adoc#cypher-runtime[Cypher runtime].
92+
a|The name of the Cypher runtime used by the query currently executing in this transaction, or an empty string if no query is currently executing. For details, see xref::query-tuning/query-options.adoc#cypher-runtime[Cypher runtime].
9393
m|STRING
9494

9595
m|indexes

modules/ROOT/pages/execution-plans/operators.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
All executin plan operators are listed here, grouped by the similarity of their characteristics.
99
--
1010

11-
Certain operators are only used by a subset of the xref::query-tuning/index.adoc#cypher-runtime[runtimes] that Cypher can choose from.
11+
Certain operators are only used by a subset of the xref::query-tuning/query-options.adoc#cypher-runtime[runtimes] that Cypher can choose from.
1212
If that is the case, the example queries will be prefixed with an option to choose one of these runtimes.
1313

1414

modules/ROOT/pages/introduction/cypher-neo4j.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ All users have full access rights.
3030
| Constraints
3131
a|
3232
All constraints:
33-
xref::constraints/examples.adoc#constraints-examples-node-property-existence[node existence constraints],
33+
xref::constraints/examples.adoc#administration-constraints-create-a-node-property-existence-constraint[node existence constraints],
3434
xref::constraints/examples.adoc#constraints-examples-relationship-property-existence[relationship existence constraints],
35-
xref::constraints/examples.adoc#constraints-examples-node-uniqueness[node property uniqueness constraints],
36-
xref::constraints/examples.adoc#constraints-examples-node-key[node key constraints].
35+
xref::constraints/examples.adoc#administration-constraints-unique-nodes[node property uniqueness constraints],
36+
xref::constraints/examples.adoc#administration-constraints-node-key[node key constraints].
3737
a|
38-
Only xref::constraints/examples.adoc#constraints-examples-node-uniqueness[node] property uniqueness constraints.
38+
Only xref::constraints/examples.adoc#administration-constraints-unique-nodes[node] property uniqueness constraints.
3939

4040
|===
4141

modules/ROOT/pages/introduction/cypher-overview.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ However, there are some important differences between the two:
3636
*Cypher is schema-flexible*::
3737

3838
While it is both possible and advised to enforce partial schemas using xref:constraints/index.adoc[indexes and constraints], Cypher and Neo4j offers a greater degree of schema-flexibility than SQL and a relational database.
39-
More specifically, nodes and relationships in a Neo4j database do not have to have a specific property set to them because other nodes or relationships in the same graph have that property (unless there is an xref:constraints/examples.adoc#constraints-examples-node-property-existence[existence constraint created on that specific property]).
39+
More specifically, nodes and relationships in a Neo4j database do not have to have a specific property set to them because other nodes or relationships in the same graph have that property (unless there is an xref:constraints/examples.adoc#administration-constraints-create-a-node-property-existence-constraint[existence constraint created on that specific property]).
4040
This means that users are not required to use a fixed schema to represent data and that they can add new attributes and relationships as their graphs evolve.
4141

4242
*Query order*::

modules/ROOT/pages/query-tuning/query-options.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ As this is the default version, it is not necessary to use this option explicitl
4646
In Neo4j {neo4j-version}, the support for Cypher 3.5 and Cypher 4.3 is provided only at the parser level.
4747
The consequence is that some underlying features available in Neo4j 3.5 are no longer available and will result in runtime errors.
4848
49-
Please refer to the discussion in xref::deprecations-additions-removals-compatibility.adoc#cypher-compatibility[Cypher Compatibility] for more information on which features are affected.
49+
Please refer to the discussion in xref::deprecations-additions-removals-compatibility.adoc[] for more information on which features are affected.
5050
====
5151

5252

modules/ROOT/pages/syntax/parameters.adoc

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,6 @@ For example:
4242
We provide below a comprehensive list of examples of parameter usage.
4343
In these examples, parameters are given in JSON; the exact manner in which they are to be submitted depends upon the driver being used.
4444

45-
[NOTE]
46-
====
47-
The old parameter syntax `+{param}+` was deprecated in Neo4j 3.0 and removed entirely in Neo4j 4.0.
48-
Using it will result in a syntax error.
49-
However, it is still possible to use it, with warnings, if you prefix the query with `CYPHER 3.5`.
50-
See xref::deprecations-additions-removals-compatibility.adoc#cypher-compatibility[Cypher Compatibility] for further information.
51-
====
52-
5345

5446
[[cypher-parameters-auto-parameterization]]
5547
== Auto-parameterization

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ RETURN keanu{.name, movies: movies}
117117
|===
118118

119119
The below query finds all `Person` nodes in the graph that have one or more relationships with the type `ACTED_IN` connected to `Movie` nodes.
120-
It uses the xref::functions/aggregating.adoc#unctions-count[count()] function to count how many `Movie` nodes are connected to each `Person` node in this way, and uses a variable selector to project the value of the count.
120+
It uses the xref::functions/aggregating.adoc#functions-count[count()] function to count how many `Movie` nodes are connected to each `Person` node in this way, and uses a variable selector to project the value of the count.
121121

122122
.Query
123123
[source, cypher]

0 commit comments

Comments
 (0)