Skip to content

Commit 0d47b49

Browse files
JPryce-Aklundhstefano-ottolenghidependabot[bot]nadja-mullerJMHReif
authored
2025.01 publish (#1181)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Stefano Ottolenghi <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nadja Müller <[email protected]> Co-authored-by: Jennifer Reif <[email protected]> Co-authored-by: Bastien Louërat <[email protected]> Co-authored-by: dogofbrian <[email protected]> Co-authored-by: Wilco <[email protected]> Co-authored-by: Hannes Voigt <[email protected]> Co-authored-by: Richard Sill <[email protected]> Co-authored-by: Therese Magnusson <[email protected]> Co-authored-by: Neil Dewhurst <[email protected]> Co-authored-by: Gem Lamont <[email protected]>
1 parent ac204d2 commit 0d47b49

Some content is hidden

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

52 files changed

+732
-743
lines changed

antora.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ nav:
66
- modules/ROOT/content-nav.adoc
77
asciidoc:
88
attributes:
9-
neo4j-version: '5'
10-
neo4j-version-minor: '5.26'
11-
neo4j-version-exact: '5.26.0'
9+
neo4j-version: '2025.01'
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: 8 additions & 8 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
@@ -669,7 +669,7 @@ Planner COST
669669
670670
Runtime PIPELINED
671671
672-
Runtime version {neo4j-version-minor}
672+
Runtime version {neo4j-version}
673673
674674
Batch size 128
675675
@@ -711,7 +711,7 @@ Planner COST
711711
712712
Runtime PIPELINED
713713
714-
Runtime version {neo4j-version-minor}
714+
Runtime version {neo4j-version}
715715
716716
Batch size 128
717717
@@ -776,7 +776,7 @@ Planner COST
776776
777777
Runtime PIPELINED
778778
779-
Runtime version {neo4j-version-minor}
779+
Runtime version {neo4j-version}
780780
781781
Batch size 128
782782
@@ -823,7 +823,7 @@ Planner COST
823823
824824
Runtime PIPELINED
825825
826-
Runtime version {neo4j-version-minor}
826+
Runtime version {neo4j-version}
827827
828828
Batch size 128
829829
@@ -878,7 +878,7 @@ Planner COST
878878
879879
Runtime PIPELINED
880880
881-
Runtime version {neo4j-version-minor}
881+
Runtime version {neo4j-version}
882882
883883
Batch size 128
884884

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

Lines changed: 5 additions & 5 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
@@ -623,7 +623,7 @@ Planner COST
623623
624624
Runtime PIPELINED
625625
626-
Runtime version {neo4j-version-minor}
626+
Runtime version {neo4j-version}
627627
628628
Batch size 128
629629
@@ -680,7 +680,7 @@ Planner COST
680680
681681
Runtime PIPELINED
682682
683-
Runtime version {neo4j-version-minor}
683+
Runtime version {neo4j-version}
684684
685685
Batch size 128
686686
@@ -747,7 +747,7 @@ Planner COST
747747
748748
Runtime PIPELINED
749749
750-
Runtime version {neo4j-version-minor}
750+
Runtime version {neo4j-version}
751751
752752
Batch size 128
753753

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

Lines changed: 4 additions & 4 deletions
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
@@ -81,7 +81,7 @@ Planner COST
8181
8282
Runtime PIPELINED
8383
84-
Runtime version {neo4j-version-minor}
84+
Runtime version {neo4j-version}
8585
8686
Batch size 128
8787
@@ -158,7 +158,7 @@ Planner COST
158158
159159
Runtime PIPELINED
160160
161-
Runtime version {neo4j-version-minor}
161+
Runtime version {neo4j-version}
162162
163163
Batch size 1024
164164
@@ -261,7 +261,7 @@ Planner COST
261261
262262
Runtime PIPELINED
263263
264-
Runtime version {neo4j-version-minor}
264+
Runtime version {neo4j-version}
265265
266266
Batch size 128
267267

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

0 commit comments

Comments
 (0)