Skip to content

Commit 4d77063

Browse files
Update constraints link following restructure in Cypher Manual (neo4j#1874)
Cypher Manual PR: neo4j/docs-cypher#1041
1 parent 72cec7c commit 4d77063

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/ROOT/pages/database-internals/concurrent-data-access.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ The easiest way to work around this is to only read each property once, and keep
125125
=== Missing and double reads
126126

127127
When scanning an xref:performance/index-configuration.adoc[index], entities may be observed multiple times or skipped entirely, even if they are present in the index.
128-
This is true even for indexes that back link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/constraints/examples/#constraints-examples-node-uniqueness[uniqueness constraints].
128+
This is true even for indexes that back link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/constraints/managing-constraints/#create-property-uniqueness-constraints[property uniqueness constraints].
129129

130130
During the scan, if another concurrent query changes an entity's property to a position ahead of the scan, the entity might appear again in the index.
131131
Similarly, the entity may not appear at all if the property is changed to a previously scanned position.

modules/ROOT/pages/database-internals/store-formats.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ For example:
174174
bin/neo4j-admin database copy --to-format="block" mydb blockdb --copy-schema
175175
----
176176
. After the successful completion, start the database using the Cypher command `START DATABASE mydb`.
177-
Indexes are populated the first time the database is started, which might take some time if there are uniqueness constraints.
177+
Indexes are populated the first time the database is started, which might take some time if there are property uniqueness constraints.
178178

179179
[[change-store-format-cluster]]
180180
==== In a cluster

modules/ROOT/pages/tools/neo4j-admin/neo4j-admin-import.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ This is also true when working with multiple groups.
963963
For example, you can use `uuid:ID(Person){label:Person}`, where the relationship CSV data can refer to different groups for its `:START_ID` and `:END_ID`, just like the full import method.
964964
965965
* For more information on constraints, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/constraints[Cypher Manual -> Constraints].
966-
* For examples of creating property uniqueness constraints, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/constraints/examples/#constraints-examples-node-uniqueness[Cypher Manual -> Node property uniqueness constraints].
966+
* For examples of creating property uniqueness constraints, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/constraints/managing-constraints/#create-property-uniqueness-constraints[Cypher Manual -> Create property uniqueness constraints].
967967
====
968968

969969
[[import-tool-header-format-nodes]]

0 commit comments

Comments
 (0)