diff --git a/modules/ROOT/pages/configuration/neo4j-conf.adoc b/modules/ROOT/pages/configuration/neo4j-conf.adoc index 82df23f8b..94d6fe602 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 xref:configuration/neo4j-conf.adoc#neo4j-conf-JVM[JVM specific configuration settings]. +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/introduction.adoc b/modules/ROOT/pages/introduction.adoc index 082425cbf..9c918904d 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)] label:new | {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 1faf453b6..7a48b7eb1 100644 --- a/modules/ROOT/pages/monitoring/logging.adoc +++ b/modules/ROOT/pages/monitoring/logging.adoc @@ -1044,7 +1044,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 cbf343700..77339c30e 100644 --- a/modules/ROOT/pages/procedures.adoc +++ b/modules/ROOT/pages/procedures.adoc @@ -1252,7 +1252,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+| xref:procedures.adoc#procedure_db_create_setNodeVectorProperty[`db.create.setNodeVectorProperty()`] and xref:procedures.adoc#procedure_db_create_setRelationshipVectorProperty[`db.create.setRelationshipVectorProperty()`] +| *Replaced by* 3+| <<#procedure_db_create_setNodeVectorProperty, `db.create.setNodeVectorProperty()`>> and <<#procedure_db_create_setRelationshipVectorProperty, `db.create.setRelationshipVectorProperty()`>> |=== .Known issue @@ -1962,7 +1962,7 @@ Replaced by: xref:procedures.adoc#procedure_db_cdc_query[`db.cdc.query()`] | xref:procedures.adoc#procedure_db_create_setVectorProperty[`db.create.setVectorProperty()`] | label:yes[] | label:yes[] -| label:new[Introduced in 5.11] label:beta[] label:deprecated[Deprecated in 5.13] Replaced by: xref:procedures.adoc#procedure_db_create_setNodeVectorProperty[`db.create.setNodeVectorProperty()`] +| label:new[Introduced in 5.11] label:beta[] label:deprecated[Deprecated in 5.13] Replaced by: <<#procedure_db_create_setNodeVectorProperty, `db.create.setNodeVectorProperty()`>> // New in 4.2 // com.neo4j.causaulclustering.discovery.procedures.ReadReplicaToggleProcedure 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/tools/cypher-shell.adoc b/modules/ROOT/pages/tools/cypher-shell.adoc index a321026d8..48316ce48 100644 --- a/modules/ROOT/pages/tools/cypher-shell.adoc +++ b/modules/ROOT/pages/tools/cypher-shell.adoc @@ -489,8 +489,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/tutorial/tutorial-composite-database.adoc b/modules/ROOT/pages/tutorial/tutorial-composite-database.adoc index 0a184ea2f..f7c0c8e67 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: