Skip to content

Commit 899b365

Browse files
Fix external links (#1172)
The page-version attribute between Cypher and other manuals wont work with the release of 2025.01
1 parent 2b2241a commit 899b365

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+207
-207
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= Administration
22

3-
The pages previously in this chapter have been moved to the link:{neo4j-docs-base-uri}/operations-manual/{page-version}/[Operations Manual].
3+
The pages previously in this chapter have been moved to the link:{neo4j-docs-base-uri}/operations-manual/current/[Operations Manual].
44

55
More specific information about the content relocation is listed in the table:
66

@@ -9,13 +9,13 @@ More specific information about the content relocation is listed in the table:
99

1010
| Content | New location in Operations Manual
1111

12-
| Database management | link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/[Database administration]
12+
| Database management | link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/[Database administration]
1313

14-
| Alias management | link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/aliases/manage-aliases-standard-databases/[Managing aliases]
14+
| Alias management | link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/aliases/manage-aliases-standard-databases/[Managing aliases]
1515

16-
| Server management | link:{neo4j-docs-base-uri}/operations-manual/{page-version}/clustering/[Managing servers in a cluster]
16+
| Server management | link:{neo4j-docs-base-uri}/operations-manual/current/clustering/[Managing servers in a cluster]
1717

18-
| Access control | link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/[Authentication and authorization]
18+
| Access control | link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/[Authentication and authorization]
1919

2020
|===
2121

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ REMOVE n:$($label)
208208
| xref:functions/graph.adoc#functions-graph-by-elementid[`graph.byElementId()`]
209209
| Returns the graph reference with the given element id.
210210
It is only supported in the xref:clauses/use.adoc[`USE`] clause.
211-
As of Neo4j 5.26, it is supported on both link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/[standard and composite databases].
211+
As of Neo4j 5.26, it is supported on both link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/[standard and composite databases].
212212
On earlier versions, it is only supported on composite databases.
213213

214214
| xref:functions/graph.adoc#functions-graph-byname[`graph.byName()`]
@@ -658,23 +658,23 @@ For more information, see xref:planning-and-tuning/query-tuning.adoc[Query optio
658658
== Administration
659659

660660
[NOTE]
661-
The documentation for Cypher's administration commands is located in Neo4j's link:{neo4j-docs-base-uri}/operations-manual/{page-version}/[Operation Manual].
661+
The documentation for Cypher's administration commands is located in Neo4j's link:{neo4j-docs-base-uri}/operations-manual/current/[Operation Manual].
662662

663663
[options="header", cols="2a,5a"]
664664
|===
665665
| Cypher feature
666666
| Description
667667

668-
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/[Database management]
668+
| link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/[Database management]
669669
| Commands to `CREATE`, `SHOW`, `ALTER`, and `DROP` standard and composite databases.
670670

671-
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/aliases/manage-aliases-standard-databases/[Alias management]
671+
| link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/aliases/manage-aliases-standard-databases/[Alias management]
672672
| Commands to `CREATE`, `SHOW`, `ALTER`, and `DROP` database aliases.
673673

674-
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/clustering/[Server management]
674+
| link:{neo4j-docs-base-uri}/operations-manual/current/clustering/[Server management]
675675
| Commands to administer servers in a cluster and the databases allocated to them.
676676

677-
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/[Authentication and authorization]
677+
| link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/[Authentication and authorization]
678678
| Commands to manage users, roles, and privileges.
679679

680680
|===

modules/ROOT/pages/appendix/gql-conformance/supported-mandatory.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ This is currently not available in Cypher.
155155
| <value specification>
156156
|
157157
| GQL defines the `SESSION_USER` value expression, which enables accessing a user’s username within a query.
158-
In Cypher, current user details can be seen using the link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/manage-users/#access-control-current-users[`SHOW CURRENT USER` command].
158+
In Cypher, current user details can be seen using the link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/manage-users/#access-control-current-users[`SHOW CURRENT USER` command].
159159

160160
| 20.7
161161
| <case expression>

modules/ROOT/pages/appendix/gql-conformance/unsupported-mandatory.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Neo4j offers session management through the link:{neo4j-docs-base-uri}/create-ap
2828
| GQL defines the following transaction commands: `START TRANSACTION`, `COMMIT`, and `ROLLBACK`.
2929

3030
Neo4j offers transaction management through the link:{neo4j-docs-base-uri}/create-applications[driver] transaction API.
31-
Cypher Shell also offers specific link:{neo4j-docs-base-uri}/operations-manual/{page-version}/tools/cypher-shell/#cypher-shell-commands[commands] to manage transactions.
31+
Cypher Shell also offers specific link:{neo4j-docs-base-uri}/operations-manual/current/tools/cypher-shell/#cypher-shell-commands[commands] to manage transactions.
3232

3333
| 11.1
3434
| Graph expressions

modules/ROOT/pages/appendix/tutorials/advanced-query-tuning.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Let's explain how to use these features with a more advanced query tuning exampl
1616
[NOTE]
1717
====
1818
If you are upgrading an existing store, it may be necessary to drop and re-create existing indexes.
19-
For information on native index support and upgrade considerations regarding indexes, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/performance/index-configuration[Operations Manual -> Performance -> Index configuration].
19+
For information on native index support and upgrade considerations regarding indexes, see link:{neo4j-docs-base-uri}/operations-manual/current/performance/index-configuration[Operations Manual -> Performance -> Index configuration].
2020
====
2121

2222

@@ -540,8 +540,8 @@ It assumes that your current work directory is the _<neo4j-home>_ directory of t
540540

541541
[NOTE]
542542
====
543-
* For the default directory of other installations see, link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/file-locations[Operations Manual -> File locations].
544-
* The import location can be configured with link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/configuration-settings#config_server.directories.import[Operations Manual -> `server.directories.import`].
543+
* For the default directory of other installations see, link:{neo4j-docs-base-uri}/operations-manual/current/configuration/file-locations[Operations Manual -> File locations].
544+
* The import location can be configured with link:{neo4j-docs-base-uri}/operations-manual/current/configuration/configuration-settings#config_server.directories.import[Operations Manual -> `server.directories.import`].
545545
====
546546

547547
== Importing the data

modules/ROOT/pages/appendix/tutorials/basic-query-tuning.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,8 @@ It assumes that your current work directory is the _<neo4j-home>_ directory of t
525525

526526
[NOTE]
527527
====
528-
* For the default directory of other installations see, link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/file-locations[Operations Manual -> File locations].
529-
* The import location can be configured with link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/configuration-settings#config_server.directories.import[Operations Manual -> `server.directories.import`].
528+
* For the default directory of other installations see, link:{neo4j-docs-base-uri}/operations-manual/current/configuration/file-locations[Operations Manual -> File locations].
529+
* The import location can be configured with link:{neo4j-docs-base-uri}/operations-manual/current/configuration/configuration-settings#config_server.directories.import[Operations Manual -> `server.directories.import`].
530530
====
531531

532532
== Importing the data

modules/ROOT/pages/appendix/tutorials/shortestpath-planning.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ When the exhaustive search is planned, it is still only executed when the fast a
2020
The fast algorithm is always executed first, since it is possible that it can find a valid path even though that could not be guaranteed at planning time.
2121

2222
Please note that falling back to the exhaustive search may prove to be a very time consuming strategy in some cases; such as when there is no shortest path between two nodes.
23-
Therefore, in these cases, it is recommended to set `cypher.forbid_exhaustive_shortestpath` to `true`, as explained in link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/configuration-settings#config_dbms.cypher.forbid_exhaustive_shortestpath[Operations Manual -> Configuration settings].
23+
Therefore, in these cases, it is recommended to set `cypher.forbid_exhaustive_shortestpath` to `true`, as explained in link:{neo4j-docs-base-uri}/operations-manual/current/configuration/configuration-settings#config_dbms.cypher.forbid_exhaustive_shortestpath[Operations Manual -> Configuration settings].
2424

2525

2626
== Shortest path -- fast algorithm

modules/ROOT/pages/clauses/call.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ For information about how to list procedures, see xref:clauses/listing-procedure
1212

1313
[NOTE]
1414
Neo4j comes with a number of built-in procedures.
15-
For a list of these, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures[Operations Manual -> Procedures].
15+
For a list of these, see link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures[Operations Manual -> Procedures].
1616
Users can also develop custom procedures and deploy to the database.
17-
See link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/procedures#extending-neo4j-procedures[Java Reference -> User-defined procedures] for details.
17+
See link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/procedures#extending-neo4j-procedures[Java Reference -> User-defined procedures] for details.
1818

1919
[[example-graph]]
2020
== Example graph
@@ -42,7 +42,7 @@ CREATE (andy:Developer {name: 'Andy', born: 1991}),
4242
.`CALL` a procedure without arguments
4343
====
4444
45-
This example calls the built-in procedure link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures/#procedure_db_labels[`db.labels()`], which lists all labels used in the database.
45+
This example calls the built-in procedure link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/#procedure_db_labels[`db.labels()`], which lists all labels used in the database.
4646
4747
.Query
4848
[source, cypher]
@@ -72,7 +72,7 @@ Omission of parentheses is available only in a so-called standalone procedure ca
7272
====
7373
7474
75-
This example calls the procedure link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures/#procedure_dbms_checkconfigvalue[`dbms.checkConfigValue()`], which checks the validity of a configuration setting value, using literal arguments.
75+
This example calls the procedure link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/#procedure_dbms_checkconfigvalue[`dbms.checkConfigValue()`], which checks the validity of a configuration setting value, using literal arguments.
7676
7777
.Query
7878
[source, cypher]
@@ -206,7 +206,7 @@ RETURN count(*) AS results
206206
====
207207
208208
`YIELD` can be used to filter for specific results.
209-
This requires knowing the names of the arguments within a procedure's signature, which can either be found in the link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures/[Operations Manual -> Procedures] or in the `signature` column returned by a `SHOW PROCEDURES` command (see example below).
209+
This requires knowing the names of the arguments within a procedure's signature, which can either be found in the link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/[Operations Manual -> Procedures] or in the `signature` column returned by a `SHOW PROCEDURES` command (see example below).
210210
211211
.Find the argument names of `db.propertyKeys`
212212
[source, cypher]
@@ -271,7 +271,7 @@ Similar to xref:clauses/optional-match.adoc[`OPTIONAL MATCH`] any empty rows pro
271271
.Difference between using `CALL` and `OPTIONAL CALL`
272272
====
273273
274-
This query uses the link:{neo4j-docs-base-uri}/apoc/{page-version}/overview/apoc.neighbors/apoc.neighbors.tohop[`apoc.neighbors.tohop()`] procedure (part of Neo4j's link:{neo4j-docs-base-uri}/apoc/{page-version}/[APOC Core library]), which returns all nodes connected by the given relationship type within the specified distance (1 hop, in this case) and direction.
274+
This query uses the link:{neo4j-docs-base-uri}/apoc/current/overview/apoc.neighbors/apoc.neighbors.tohop[`apoc.neighbors.tohop()`] procedure (part of Neo4j's link:{neo4j-docs-base-uri}/apoc/current/[APOC Core library]), which returns all nodes connected by the given relationship type within the specified distance (1 hop, in this case) and direction.
275275
276276
.Regular procedure `CALL`
277277
[source, cypher]

modules/ROOT/pages/clauses/delete.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This can be done by either explicitly deleting specific relationships, or by usi
1313

1414
[NOTE]
1515
While the `DELETE` clause renders the deleted objects no longer accessible, the space occupied by the deleted nodes and relationships remain on the disk and is reserved for future transactions creating data.
16-
For information about how to clear and reuse the space occupied by deleted objects, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/performance/space-reuse/[Operations Manual -> Space reuse].
16+
For information about how to clear and reuse the space occupied by deleted objects, see link:{neo4j-docs-base-uri}/operations-manual/current/performance/space-reuse/[Operations Manual -> Space reuse].
1717

1818
== Example graph
1919

@@ -120,7 +120,7 @@ Deleted 1 node, deleted 1 relationship
120120
[NOTE]
121121
====
122122
The `DETACH DELETE` clause may not be permitted to users with restricted security privileges.
123-
For more information, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/access-control#detach-delete-restricted-user[Operations Manual -> Fine-grained access control].
123+
For more information, see link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/access-control#detach-delete-restricted-user[Operations Manual -> Fine-grained access control].
124124
====
125125

126126

modules/ROOT/pages/clauses/index.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,6 @@ m| xref::constraints/syntax.adoc[CREATE \| SHOW \| DROP CONSTRAINT]
282282
Cypher includes commands to manage databases, aliases, servers, and role-based access control.
283283
To learn more about each of these, see:
284284

285-
* link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration[Operations Manual -> Database administration]
286-
* link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/[Operations Manual -> Authentication and authorization]
287-
* link:{neo4j-docs-base-uri}/operations-manual/{page-version}/clustering/[Operations Manual -> Clustering]
285+
* link:{neo4j-docs-base-uri}/operations-manual/current/database-administration[Operations Manual -> Database administration]
286+
* link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/[Operations Manual -> Authentication and authorization]
287+
* link:{neo4j-docs-base-uri}/operations-manual/current/clustering/[Operations Manual -> Clustering]

0 commit comments

Comments
 (0)