Skip to content

Commit 76cc6fe

Browse files
Fix redirected links (5) (#1333)
1 parent fcb118c commit 76cc6fe

File tree

17 files changed

+28
-28
lines changed

17 files changed

+28
-28
lines changed

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/current/tools/cypher-shell/#cypher-shell-commands[commands] to manage transactions.
31+
Cypher Shell also offers specific link:{neo4j-docs-base-uri}/operations-manual/current/cypher-shell/#cypher-shell-commands[commands] to manage transactions.
3232

3333
| 11.1
3434
| Graph expressions

modules/ROOT/pages/clauses/delete.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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/current/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/tutorial/access-control/#detach-delete-restricted-user[Operations Manual -> Fine-grained access control].
124124
====
125125

126126

modules/ROOT/pages/clauses/load-csv.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ Added 4 nodes, Set 8 properties, Added 4 labels
7070
====
7171

7272
[NOTE]
73-
For ways of importing data into an Aura instance, see link:https://neo4j.com/docs/aura/auradb/importing/importing-data/[Aura -> Importing data].
73+
For ways of importing data into an Aura instance, see link:https://neo4j.com/docs/aura/classic/auradb/importing/importing-data/[Aura -> Importing data].
7474

7575
[TIP]
76-
When using `+file:///+` URLs, spaces and other non-alphanumeric characters must be link:https://developer.mozilla.org/en-US/docs/Glossary/percent-encoding[URL-encoded].
76+
When using `+file:///+` URLs, spaces and other non-alphanumeric characters must be link:https://developer.mozilla.org/en-US/docs/Glossary/Percent-encoding[URL-encoded].
7777

7878

7979
==== Configuration settings for file URLs
@@ -369,7 +369,7 @@ You can't load zipped CSV files from remote URLs.
369369
=== Import data from relational databases
370370

371371
If the source data comes from a relational model, it's worth evaluating how to gain the most from moving to a graph data model.
372-
Before running the import, think about how the data can be modeled as a graph, and adapt its structure accordingly when running the import (see link:https://neo4j.com/docs/getting-started/data-modeling/guide-data-modeling/[Graph data modeling]).
372+
Before running the import, think about how the data can be modeled as a graph, and adapt its structure accordingly when running the import (see link:https://neo4j.com/docs/getting-started/data-modeling/tutorial-data-modeling/[Graph data modeling]).
373373

374374
Data from relational databases may consist of one or multiple CSV files, depending on the source database structure.
375375
A performant approach is to run multiple passes of `LOAD CSV` to import nodes separately from relationships.
@@ -1168,7 +1168,7 @@ With increasing amounts of data, it is more efficient to create _all_ nodes firs
11681168

11691169
There are a few other tools to get CSV data into Neo4j.
11701170

1171-
1. *The link:{neo4j-docs-base-uri}/operations-manual/current/tools/neo4j-admin/neo4j-admin-import/[`neo4j-admin database import`] command* is the most efficient way of importing large CSV files.
1171+
1. *The link:{neo4j-docs-base-uri}/operations-manual/current/import/[`neo4j-admin database import`] command* is the most efficient way of importing large CSV files.
11721172
2. Use a link:https://neo4j.com/docs/create-applications/[*language library*] to parse CSV data and run creation Cypher queries against a Neo4j database.
11731173
Created as an extension library to provide common procedures and functions to developers.
11741174
This library is especially helpful for complex transformations and data manipulations.

modules/ROOT/pages/functions/aggregating.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Aggregation can be computed over all the matching paths, or it can be further di
1010

1111
[TIP]
1212
====
13-
To learn more about how Cypher handles aggregations performed on zero rows, refer to link:https://neo4j.com/developer/kb/understanding-aggregations-on-zero-rows//[Neo4j Knowledge Base -> Understanding aggregations on zero rows].
13+
To learn more about how Cypher handles aggregations performed on zero rows, refer to link:https://neo4j.com/developer/kb/understanding-aggregations-on-zero-rows/[Neo4j Knowledge Base -> Understanding aggregations on zero rows].
1414
====
1515

1616
== Example graph

modules/ROOT/pages/functions/graph.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
.Considerations
1818
|===
19-
| `graph.names()` is only supported on link:{neo4j-docs-base-uri}/operations-manual/current/composite-databases[composite databases].
19+
| `graph.names()` is only supported on link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/composite-databases/concepts/[composite databases].
2020
|===
2121

2222
.+graph.names()+
@@ -71,7 +71,7 @@ The names of all graphs on the current composite database are returned.
7171

7272
.Considerations
7373
|===
74-
| `graph.propertiesByName()` is only supported on link:{neo4j-docs-base-uri}/operations-manual/current/composite-databases[composite databases].
74+
| `graph.propertiesByName()` is only supported on link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/composite-databases/concepts/[composite databases].
7575
| The properties in the returned `MAP` are set on the link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/aliases/manage-aliases-standard-databases/[alias]that adds the graph as a constituent of a composite database.
7676
|===
7777

modules/ROOT/pages/genai-integrations.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The graph contains 28863 nodes and 332522 relationships.
3939
There are 9083 `Movie` nodes with a `plot` and `title` property.
4040

4141
To recreate the graph, download and import this link:https://github.com/neo4j-graph-examples/recommendations/raw/main/data/recommendations-embeddings-50.dump[dump file] to an empty Neo4j database (running version 5.17 or later).
42-
Dump files can be imported for both link:{neo4j-docs-base-uri}/aura/auradb/importing/import-database/[Aura] and link:{neo4j-docs-base-uri}/operations-manual/current/backup-restore/restore-dump/[on-prem] instances.
42+
Dump files can be imported for both link:{neo4j-docs-base-uri}/aura/classic/auradb/importing/import-database/[Aura] and link:{neo4j-docs-base-uri}/operations-manual/current/backup-restore/restore-dump/[on-prem] instances.
4343

4444
[NOTE]
4545
The embeddings on this are generated using link:https://platform.openai.com/docs/guides/embeddings[OpenAI] (model `text-embedding-ada-002`), producing 1536-dimensional vectors.
@@ -221,7 +221,7 @@ Each provider has its own configuration map that can be passed to `genai.vector.
221221
=== Vertex AI
222222

223223
* Identifier (`provider` argument): `"VertexAI"`
224-
* https://cloud.google.com/vertex-ai/docs/generative-ai/embeddings/get-text-embeddings[Official Vertex AI documentation]
224+
* https://cloud.google.com/vertex-ai/generative-ai/docs/embeddings/get-text-embeddings[Official Vertex AI documentation]
225225

226226
.Configuration map
227227
[%header,cols="1m,1m,3a,2"]
@@ -338,7 +338,7 @@ Supported values: +
338338
=== Azure OpenAI
339339

340340
* Identifier (`provider` argument): `"AzureOpenAI"`
341-
* https://learn.microsoft.com/en-us/azure/ai-services/openai/[Official Azure OpenAI documentation]
341+
* https://learn.microsoft.com/en-us/azure/ai-foundry/[Official Azure OpenAI documentation]
342342

343343
[NOTE]
344344
Unlike the other providers, the model is configured when creating the deployment on Azure, and is thus not part of the configuration map.

modules/ROOT/pages/indexes/search-performance-indexes/using-indexes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ image::using_indexes_example_graph.svg[width="600",role="middle"]
2828
In total, the graph contains 69165 nodes (of which 188 have the label `PointOfInterest`) and 152077 `ROUTE` relationships.
2929

3030
To recreate the graph, download and import the link:https://github.com/neo4j-graph-examples/openstreetmap/raw/main/data/openstreetmap-50.dump[5.0 dump file] to an empty Neo4j database.
31-
Dump files can be imported for both link:{neo4j-docs-base-uri}/aura/auradb/importing/import-database/[Aura] and link:{neo4j-docs-base-uri}/operations-manual/current/backup-restore/restore-dump/[on-prem] instances.
31+
Dump files can be imported for both link:{neo4j-docs-base-uri}/aura/classic/auradb/importing/import-database/[Aura] and link:{neo4j-docs-base-uri}/operations-manual/current/backup-restore/restore-dump/[on-prem] instances.
3232

3333
[[token-lookup-indexes]]
3434
== Token lookup indexes

modules/ROOT/pages/indexes/semantic-indexes/full-text-indexes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ The procedures for full-text indexes are listed in the table below:
391391
* Full-text indexes can be queried using the Lucene query language.
392392
* Full-text indexes are kept up to date automatically, as nodes and relationships are added, removed, and modified.
393393
* Full-text indexes will automatically populate newly created indexes with the existing data in a store.
394-
* Full-text indexes can be checked by the link:{neo4j-docs-base-uri}/operations-manual/current/tools/neo4j-admin/consistency-checker[consistency checker], and they can be rebuilt if there is a problem with them.
394+
* Full-text indexes can be checked by the link:{neo4j-docs-base-uri}/operations-manual/current/backup-restore/consistency-checker/[consistency checker], and they can be rebuilt if there is a problem with them.
395395
* Newly created full-text indexes get automatically populated with the existing data in the database.
396396
* Full-text indexes can support any number of properties in a single index.
397397
* Full-text indexes are created, dropped, and updated transactionally, and are automatically replicated throughout a cluster.

modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following resources provide hands-on tutorials for working with LLMs and vec
1717
* link:https://neo4j.com/docs/genai/tutorials/embeddings-vector-indexes/[GenAI documentation -> Embeddings & Vector Indexes Tutorial]
1818

1919
Neo4j vector indexes are powered by the link:https://lucene.apache.org/[Apache Lucene] indexing and search library.footnote:[Lucene implements a Hierarchical Navigable Small World (HNSW) Graph to perform a k approximate nearest neighbors (k-ANN) query over the vector fields.
20-
For more information, see link:http://dx.doi.org/10.1109/TPAMI.2018.2889473[Efficient and Robust Approximate Nearest Neighbor Search Using Hierarchical Navigable Small World Graphs] -- Yury A. Malkov and Dmitry A. Yashunin]
20+
For more information, see link:https://ieeexplore.ieee.org/document/8594636/[Efficient and Robust Approximate Nearest Neighbor Search Using Hierarchical Navigable Small World Graphs] -- Yury A. Malkov and Dmitry A. Yashunin]
2121

2222
[[example-graph]]
2323
== Example graph
@@ -30,7 +30,7 @@ image::vector_index_graph.svg[width="600",role="middle"]
3030
The graph contains 28863 nodes and 332522 relationships.
3131

3232
To recreate the graph, download and import this link:https://github.com/neo4j-graph-examples/recommendations/raw/main/data/recommendations-embeddings-50.dump[dump file] to an empty Neo4j database (running version 5.13 or later).
33-
Dump files can be imported for both link:{neo4j-docs-base-uri}/aura/auradb/importing/import-database/[Aura] and link:{neo4j-docs-base-uri}/operations-manual/current/backup-restore/restore-dump/[on-prem] instances.
33+
Dump files can be imported for both link:{neo4j-docs-base-uri}/aura/classic/auradb/importing/import-database/[Aura] and link:{neo4j-docs-base-uri}/operations-manual/current/backup-restore/restore-dump/[on-prem] instances.
3434

3535
[NOTE]
3636
The dump file used to load the dataset contains embeddings generated by https://openai.com/[OpenAI], using the model `text-embedding-ada-002`.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ AuraDB is available on the following tiers:
1717
* AuraDB Business Critical
1818
* AuraDB Virtual Dedicated Cloud
1919

20-
For more information, see link:{neo4j-docs-base-uri}/aura/auradb[Aura docs - Neo4j AuraDB overview].
20+
For more information, see link:{neo4j-docs-base-uri}/aura/classic/auradb/[Aura docs - Neo4j AuraDB overview].
2121

2222
AuraDS is available on the following tiers:
2323

@@ -26,7 +26,7 @@ AuraDS is available on the following tiers:
2626
* AuraDS Professional
2727
* AuraDS Enterprise
2828

29-
For more information, see link:{neo4j-docs-base-uri}/aura/aurads[Aura docs - Neo4j AuraDS overview].
29+
For more information, see link:{neo4j-docs-base-uri}/aura/classic/aurads/[Aura docs - Neo4j AuraDS overview].
3030

3131
== Using Cypher on Aura
3232

@@ -42,6 +42,6 @@ For more information, see the link:{neo4j-docs-base-uri}/operations-manual/curre
4242

4343
Each different tier of Aura has a customized version of the Cypher Cheat Sheet which only shows the features of Cypher available for the chosen tier.
4444

45-
The Cypher Cheat Sheet can be accessed link:{neo4j-docs-base-uri}/cypher-cheat-sheet/current/auradb-enterprise/[here].
45+
The Cypher Cheat Sheet can be accessed link:{neo4j-docs-base-uri}/cypher-cheat-sheet/5/auradb-enterprise/[here].
4646
You can select your desired Aura tier and Neo4j version by using the dropdown menus provided.
4747
Note that the default tier is AuraDB Virtual Dedicated Cloud.

0 commit comments

Comments
 (0)