Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/ROOT/pages/configuration/neo4j-conf.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/introduction.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/monitoring/logging.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
====
Expand Down
4 changes: 2 additions & 2 deletions modules/ROOT/pages/procedures.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ The types are still enforced as `LIST<INTEGER | FLOAT>`.
.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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/security/browser.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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].
====
3 changes: 1 addition & 2 deletions modules/ROOT/pages/tools/cypher-shell.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
+
Expand Down
4 changes: 2 additions & 2 deletions modules/ROOT/pages/tutorial/tutorial-composite-database.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down