From db31098d443d15b032f5cf915f49529e7077a499 Mon Sep 17 00:00:00 2001 From: Natalia Ivakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Wed, 3 Sep 2025 11:42:47 +0200 Subject: [PATCH] Update links to the Browser docs (#2556) Co-authored-by: Jessica Wright <49636617+AlexicaWright@users.noreply.github.com> --- modules/ROOT/pages/configuration/neo4j-conf.adoc | 2 +- modules/ROOT/pages/cypher-shell.adoc | 3 +-- modules/ROOT/pages/introduction.adoc | 2 +- modules/ROOT/pages/monitoring/logging.adoc | 2 +- modules/ROOT/pages/procedures.adoc | 6 +++--- modules/ROOT/pages/security/browser.adoc | 2 +- .../ROOT/pages/tutorial/tutorial-composite-database.adoc | 4 ++-- 7 files changed, 10 insertions(+), 11 deletions(-) diff --git a/modules/ROOT/pages/configuration/neo4j-conf.adoc b/modules/ROOT/pages/configuration/neo4j-conf.adoc index 6e4c4844c..6a626bedd 100644 --- a/modules/ROOT/pages/configuration/neo4j-conf.adoc +++ b/modules/ROOT/pages/configuration/neo4j-conf.adoc @@ -6,7 +6,7 @@ The _neo4j.conf_ file is the main source of configuration settings in Neo4j and The location of the _neo4j.conf_ file in the different configurations of Neo4j is listed in xref:configuration/file-locations.adoc[Default file locations]. Most of the configuration settings in the _neo4j.conf_ file apply directly to Neo4j itself, but there are also other settings related to the Java Runtime (the JVM) on which Neo4j runs. -For more information, see the <>. +For more information, see the <<#neo4j-conf-JVM, JVM specific configuration settings>>. Many of the configuration settings are also used by `neo4j` launcher scripts. diff --git a/modules/ROOT/pages/cypher-shell.adoc b/modules/ROOT/pages/cypher-shell.adoc index 3e64c8bb3..43184aecf 100644 --- a/modules/ROOT/pages/cypher-shell.adoc +++ b/modules/ROOT/pages/cypher-shell.adoc @@ -484,8 +484,7 @@ Both explicit and implicit transactions run from Cypher Shell will have default .Use fine-grained transaction control ==== -The example uses the dataset from the built-in Neo4j Browser guide, called MovieGraph. -For more information, see the link:https://neo4j.com/docs/browser-manual/current/visual-tour/#guides[Neo4j Browser documentation]. +The example uses a dataset called the Movie Graph, available in the built-in Neo4j Browser guide. . Run a query that shows there is only one person in the database, who is born in 1964. + diff --git a/modules/ROOT/pages/introduction.adoc b/modules/ROOT/pages/introduction.adoc index a034c7ad1..ef04fe280 100644 --- a/modules/ROOT/pages/introduction.adoc +++ b/modules/ROOT/pages/introduction.adoc @@ -130,7 +130,7 @@ a| link:https://neo4j.com/docs/cdc/current/[Change Data Capture (CDC)] | {check-mark} | {check-mark} -| link:https://neo4j.com/docs/browser-manual/current/visual-tour/#editor[Neo4j Browser with syntax highlighting] +| link:https://neo4j.com/docs/browser/visual-tour/#_cypher_editor[Neo4j Browser with syntax highlighting] | {check-mark} | {check-mark} diff --git a/modules/ROOT/pages/monitoring/logging.adoc b/modules/ROOT/pages/monitoring/logging.adoc index 4cd496153..c95fd4c87 100644 --- a/modules/ROOT/pages/monitoring/logging.adoc +++ b/modules/ROOT/pages/monitoring/logging.adoc @@ -1079,7 +1079,7 @@ Every graph app should follow a convention for passing metadata with the queries This is typically done programmatically but can also be used with the Neo4j dev tools. + In general, you start a transaction on a user database and attach a list of metadata to it by calling `tx.setMetaData`. You can also use the procedure xref:procedures.adoc#procedure_tx_getMetaData[`CALL tx.getMetaData()`] to show the metadata of the current transaction. -These examples use the MovieGraph dataset from the link:https://neo4j.com/docs/browser-manual/current/visual-tour/#guides[Neo4j Browser guide]. +These examples use the Movie Graph dataset from the pre-installed Neo4j Browser guide. .Using `cypher-shell`, attach metadata to a transaction ==== diff --git a/modules/ROOT/pages/procedures.adoc b/modules/ROOT/pages/procedures.adoc index c3bfa3b1c..5580ff4af 100644 --- a/modules/ROOT/pages/procedures.adoc +++ b/modules/ROOT/pages/procedures.adoc @@ -1140,12 +1140,12 @@ Starting with Neo4j 2025.04, the default database can also be set to a local or | `quarantined` | `BOOLEAN` | Whether or not the database is quarantined. | `result` | `STRING` | Details about the outcome of the procedure. | *Mode* 3+| DBMS -| *Replaced by* 3+| <> +| *Replaced by* 3+| <<#procedure_dbms_unquarantineDatabase, `dbms.unquarantineDatabase()`>> |=== [NOTE] ==== -It is recommended to use <> over `dbms.quarantineDatabase()` due to its improvements and new features (see the `operation` option). +It is recommended to use <<#procedure_dbms_unquarantineDatabase,`dbms.unquarantineDatabase()`>> over `dbms.quarantineDatabase()` due to its improvements and new features (see the `operation` option). // The deprecated `dbms.quarantineDatabase()` procedure is available in Cypher 5, but not in Cypher 25. ==== @@ -1296,7 +1296,7 @@ The types are still enforced as `LIST`. .2+| *Return arguments* | *Name* | *Type* | *Description* | `node` | `NODE` | The node on which the vector property was set. | *Mode* 3+| WRITE -| *Replaced by* 3+| <> and <> +| *Replaced by* 3+| <<#procedure_db_create_setNodeVectorProperty, `db.create.setNodeVectorProperty()`>> and <<#procedure_db_create_setRelationshipVectorProperty, `db.create.setRelationshipVectorProperty()`>> |=== .Known issue diff --git a/modules/ROOT/pages/security/browser.adoc b/modules/ROOT/pages/security/browser.adoc index f7af3adea..38a6ab7c8 100644 --- a/modules/ROOT/pages/security/browser.adoc +++ b/modules/ROOT/pages/security/browser.adoc @@ -21,5 +21,5 @@ If the user issues a `:server disconnect` command then any existing session is t [NOTE] ==== -For more information on how to administer and use Neo4j Browser, see the link:https://neo4j.com/docs/browser-manual/current/operations/[Neo4j Browser manual -> Browser operations]. +For more information on how to administer and use Neo4j Browser, see the link:https://neo4j.com/docs/browser/operations/credentials-handling/[Neo4j Browser manual -> Browser operations]. ==== diff --git a/modules/ROOT/pages/tutorial/tutorial-composite-database.adoc b/modules/ROOT/pages/tutorial/tutorial-composite-database.adoc index 34f325080..9b9a8a706 100644 --- a/modules/ROOT/pages/tutorial/tutorial-composite-database.adoc +++ b/modules/ROOT/pages/tutorial/tutorial-composite-database.adoc @@ -28,8 +28,8 @@ The data includes customers, products, customer orders, warehouse stock, shippin [NOTE] ==== -For more information on how Northwind (a relational dataset) is modeled into a graph, run `:guide northwind-graph` in Neo4j Browser to play the built-in guide Northwind Graph. -See the link:https://neo4j.com/docs/browser-manual/current/visual-tour/#guides[Neo4j Browser documentation]. +For more information on how Northwind (a relational dataset) is modeled into a graph, run `:play northwind` in Neo4j Browser to play the built-in guide Northwind Graph. + ==== The Northwind graph model consists of the following data: