Skip to content

Commit f49c497

Browse files
fix links
1 parent 35da3d6 commit f49c497

File tree

17 files changed

+73
-72
lines changed

17 files changed

+73
-72
lines changed

modules/ROOT/pages/appendix/gql-conformance/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Following the GQL Standard subclause 24.2, _Minimum conformance_, Cypher’s sup
4343
* The Unicode Standard version used by Cypher depends on the running JVM version.
4444
Neo4j 5 added support for JavaSE 17 and version 13 of The Unicode Standard.
4545
Neo4j 5.14 added support for JavaSE 21 and version 15 of the Unicode Standard.
46-
For more information, see xref:syntax/parsing.adoc##_using_unicodes_in_cypher[Parsing -> Using Unicode in Cypher].
46+
For more information, see xref:syntax/parsing.adoc#_using_unicodes_in_cypher[Parsing -> Using Unicode in Cypher].
4747
* Cypher supports the following mandatory GQL property types: `BOOLEAN` (`BOOL`), `FLOAT` footnote:[The `FLOAT` type in Cypher always represents a 64-bit double-precision floating point number.], `INTEGER` (`SIGNED INTEGER`, or `INT`)footnote:[The `INTEGER` type in Cypher always represents a 64-bit `INTEGER`.], and `STRING` (`VARCHAR`).
4848
+
4949
Cypher also supports the following optional GQL property types: `DATE`, `DURATION`, `LIST<INNER_TYPE NOT NULL>` (`ARRAY<INNER_TYPE NOT NULL>`, `INNER_TYPE LIST`, or `INNER_TYPE ARRAY`)footnote:[The `INNER_TYPE` cannot be a `LIST` type.], `LOCAL DATETIME` (`TIMESTAMP WITHOUT TIME ZONE`), `LOCAL TIME` (`TIME WITHOUT TIME ZONE`), `POINT`, `ZONED DATETIME` (`TIME WITH TIME ZONE`), and `ZONED TIME` (`TIMESTAMP WITH TIME ZONE`).

modules/ROOT/pages/appendix/gql-conformance/supported-mandatory.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ For example: `MATCH (n) RETURN n."a prop"` is allowed in GQL but not Cypher.
212212
213213
| 22.15
214214
| Grouping operations
215-
| xref:functions/aggregating.adoc##counting_with_and_without_duplicates[Counting with and without duplicates]
215+
| xref:functions/aggregating.adoc#counting_with_and_without_duplicates[Counting with and without duplicates]
216216
|
217217

218218
|===

modules/ROOT/pages/appendix/gql-conformance/supported-optional.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ These codes order the features in the table below.
1515

1616
| G002
1717
| Different-edges match mode
18-
| xref:patterns/reference.adoc#/#graph-patterns-rules-relationship-uniqueness[Relationship uniqueness in Cypher]
18+
| xref:patterns/reference.adoc#graph-patterns-rules-relationship-uniqueness[Relationship uniqueness in Cypher]
1919
| The semantic for this feature is the default Cypher semantic.
2020

2121
| G004

modules/ROOT/pages/clauses/call.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ For information about how to list procedures, see xref:clauses/listing-procedure
1212

1313
[NOTE]
1414
Neo4j comes with a number of built-in procedures.
15-
For a list of these, see link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures[Operations Manual -> Procedures].
15+
For a list of these, see link:{neo4j-docs-base-uri}/operations-manual/current/procedures[Operations Manual -> Procedures].
1616
Users can also develop custom procedures and deploy to the database.
17-
See link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/procedures#extending-neo4j-procedures[Java Reference -> User-defined procedures] for details.
17+
See link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/procedures/[Java Reference -> User-defined procedures] for details.
1818

1919
[[example-graph]]
2020
== Example graph
@@ -42,7 +42,7 @@ CREATE (andy:Developer {name: 'Andy', born: 1991}),
4242
.`CALL` a procedure without arguments
4343
====
4444
45-
This example calls the built-in procedure link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/#procedure_db_labels[`db.labels()`], which lists all labels used in the database.
45+
This example calls the built-in procedure link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_labels[`db.labels()`], which lists all labels used in the database.
4646
4747
.Query
4848
[source, cypher]
@@ -72,7 +72,7 @@ Omission of parentheses is available only in a so-called standalone procedure ca
7272
====
7373
7474
75-
This example calls the procedure link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/#procedure_dbms_checkconfigvalue[`dbms.checkConfigValue()`], which checks the validity of a configuration setting value, using literal arguments.
75+
This example calls the procedure link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_checkconfigvalue[`dbms.checkConfigValue()`], which checks the validity of a configuration setting value, using literal arguments.
7676
7777
.Query
7878
[source, cypher]
@@ -206,7 +206,7 @@ RETURN count(*) AS results
206206
====
207207
208208
`YIELD` can be used to filter for specific results.
209-
This requires knowing the names of the arguments within a procedure's signature, which can either be found in the link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/[Operations Manual -> Procedures] or in the `signature` column returned by a `SHOW PROCEDURES` command (see example below).
209+
This requires knowing the names of the arguments within a procedure's signature, which can either be found in the link:{neo4j-docs-base-uri}/operations-manual/current/procedures/[Operations Manual -> Procedures] or in the `signature` column returned by a `SHOW PROCEDURES` command (see example below).
210210
211211
.Find the argument names of `db.propertyKeys`
212212
[source, cypher]

modules/ROOT/pages/clauses/listing-procedures.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ SHOW PROCEDURES
246246
|===
247247

248248
The above table only displays the first 15 results of the query.
249-
For a full list of all built-in procedures in Neo4j, visit the link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures#/#_list_of_procedures[Operations Manual -> List of procedures].
249+
For a full list of all built-in procedures in Neo4j, visit the link:{neo4j-docs-base-uri}/operations-manual/current/procedures[Operations Manual -> Procedures].
250250

251251
== Listing procedures with filtering on output columns
252252

@@ -285,7 +285,7 @@ WHERE admin
285285
|===
286286

287287
The above table only displays the first 15 results of the query.
288-
For a full list of all procedures which require `admin` privileges in Neo4j, visit the link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures#/#_list_of_procedures[Operations Manual -> List of procedures].
288+
For a full list of all procedures which require `admin` privileges in Neo4j, visit the link:{neo4j-docs-base-uri}/operations-manual/current/procedures[Operations Manual -> Procedures].
289289

290290
== Listing procedures with other filtering
291291

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ It also follows redirects, except those changing the protocol (for security reas
9595
[IMPORTANT]
9696
====
9797
It is strongly recommended to permit resource loading only over secure protocols such as HTTPS instead of insecure protocols like HTTP.
98-
This can be done by limiting the link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/load-privileges/#access-control-load-cidr/[load privileges] to only trusted sources that use secure protocols.
98+
This can be done by limiting the link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/load-privileges/#access-control-load-cidr[load privileges] to only trusted sources that use secure protocols.
9999
If allowing an insecure protocol is absolutely unavoidable, Neo4j takes measures internally to enhance the security of these requests within their limitations.
100-
However, this means that insecure URLs on virtual hosts will not function unless you add the JVM argument `-Dsun.net.http.allowRestrictedHeaders=true` to the configuration setting link:{neo4j-docs-base-uri}/operations-manual/current/configuration/configuration-settings/#config_server.jvm.additional/[`server.jvm.additional`].
100+
However, this means that insecure URLs on virtual hosts will not function unless you add the JVM argument `-Dsun.net.http.allowRestrictedHeaders=true` to the configuration setting link:{neo4j-docs-base-uri}/operations-manual/current/configuration/configuration-settings/#config_server.jvm.additional[`server.jvm.additional`].
101101
====
102102

103103

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ CREATE DATABASE db OPTIONS { seedCredentials: ..., seedConfig: ... }
222222
----
223223
| The `CREATE DATABASE` option `seedCredentials` has been deprecated.
224224
For seeding from cloud storage, it is recommended to use `CloudSeedProvider` which will read cloud credentials and configuration from standard locations.
225-
For further information, see link:{neo4j-docs-base-uri}/operations-manual/current/clustering/databases/#cloud-seed-provider[Managing databases in a cluster -> CloudSeedProvider].
225+
For further information, see link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/standard-databases/seed-from-uri/#cloud-seed-provider[Create a database from a URI -> CloudSeedProvider].
226+
226227

227228
a|
228229
label:functionality[]
@@ -5520,7 +5521,7 @@ An example of this is `CALL db.index.explicit.searchNodes('my_index','email:me*'
55205521
| xref:functions/scalar.adoc#functions-toboolean[toBoolean()] | Function | Added |
55215522
| xref:values-and-types/maps.adoc#cypher-map-projection[Map projection] | Syntax | Added |
55225523
| xref:values-and-types/lists.adoc#cypher-pattern-comprehension[Pattern comprehension] | Syntax | Added |
5523-
| link:/docs/java-reference/5/extending-neo4j/functions#extending-neo4j-functions[User-defined functions] | Functionality | Added |
5524+
| link:/docs/java-reference/5/extending-neo4j/functions[User-defined functions] | Functionality | Added |
55245525
| xref:clauses/call.adoc[CALL\...YIELD\...WHERE] | Clause | Extended | Records returned by `YIELD` may be filtered further using `WHERE`
55255526
|===
55265527

modules/ROOT/pages/functions/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,12 +752,12 @@ There are two main types of functions that can be developed and used:
752752
| Scalar
753753
| For each row the function takes parameters and returns a result.
754754
| xref::functions/user-defined.adoc#query-functions-udf[Using UDF]
755-
| link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/functions#extending-neo4j-functions[Extending Neo4j (UDF)]
755+
| link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/functions/[Extending Neo4j (UDF)]
756756

757757
| Aggregating
758758
| Consumes many rows and produces an aggregated result.
759759
| xref::functions/user-defined.adoc#query-functions-user-defined-aggregation[Using aggregating UDF]
760-
| link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/aggregation-functions#extending-neo4j-aggregation-functions[Extending Neo4j (Aggregating UDF)]
760+
| link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/aggregation-functions[Extending Neo4j (Aggregating UDF)]
761761

762762
|===
763763

modules/ROOT/pages/functions/user-defined.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ There are two main types of functions that can be developed and used:
1515
| Scalar
1616
| For each row the function takes parameters and returns a result.
1717
| xref::functions/user-defined.adoc#query-functions-udf[Using UDF]
18-
| link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/functions#extending-neo4j-functions[Extending Neo4j (UDF)]
18+
| link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/functions/[Extending Neo4j (UDF)]
1919

2020
| Aggregating
2121
| Consumes many rows and produces an aggregated result.
2222
| xref::functions/user-defined.adoc#query-functions-user-defined-aggregation[Using aggregating UDF]
23-
| link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/aggregation-functions#extending-neo4j-aggregation-functions[Extending Neo4j (Aggregating UDF)]
23+
| link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/aggregation-functions/[Extending Neo4j (Aggregating UDF)]
2424

2525
|===
2626

@@ -30,7 +30,7 @@ There are two main types of functions that can be developed and used:
3030

3131
For each incoming row the function takes parameters and returns a single result.
3232

33-
For developing and deploying user-defined functions in Neo4j, see link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/functions#extending-neo4j-functions[Extending Neo4j -> User-defined functions].
33+
For developing and deploying user-defined functions in Neo4j, see link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/functions[Extending Neo4j -> User-defined functions].
3434

3535

3636
.Call a user-defined function

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Removing stop words can help reduce the size of stored data and thereby improve
9191
In some cases, using different analyzers for the indexed values and query string is more appropriate.
9292
For example, if handling `STRING` values written in Swedish, it may be beneficial to select the `swedish` analyzer, which knows how to tokenize Swedish words, and will avoid indexing Swedish stop words.
9393

94-
The link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/#procedure_db_index_fulltext_listavailableanalyzers[`db.index.fulltext.listAvailableAnalyzers()`] procedure shows all available analyzers.
94+
The link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_fulltext_listavailableanalyzers[`db.index.fulltext.listAvailableAnalyzers()`] procedure shows all available analyzers.
9595

9696
Neo4j also supports the use of custom analyzers.
9797
For more information, see the link:{neo4j-docs-base-uri}/java-reference/current/extending-neo4j/full-text-analyzer-provider[Java Reference Manual -> Full-text index analyzer providers].
@@ -135,7 +135,7 @@ For more information on how to configure full-text indexes, refer to the link:{n
135135
== Query full-text indexes
136136

137137
Unlike xref:indexes/search-performance-indexes/managing-indexes.adoc[search-performance indexes], full-text indexes are not automatically used by the xref:planning-and-tuning/execution-plans.adoc[Cypher query planner].
138-
To query a full-text index, use either the link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/#procedure_db_index_fulltext_querynodes[`db.index.fulltext.queryNodes`] or the link:{neo4j-docs-base-uri}/operations-manual/current/reference/procedures/#procedure_db_index_fulltext_relationships[`db.index.fulltext.queryRelationships`] procedure.
138+
To query a full-text index, use either the link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_fulltext_querynodes[`db.index.fulltext.queryNodes`] or the link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_fulltext_queryRelationships[`db.index.fulltext.queryRelationships`] procedure.
139139

140140
[NOTE]
141141
An index cannot be used while its `state` is `POPULATING`, which occurs immediately after it is created.
@@ -363,19 +363,19 @@ The procedures for full-text indexes are listed in the table below:
363363
| Usage | Procedure/Command | Description
364364

365365
| Eventually consistent indexes.
366-
| https://neo4j.com/docs/operations-manual/current/reference/procedures/#procedure_db_index_fulltext_awaiteventuallyconsistentindexrefresh[`db.index.fulltext.awaitEventuallyConsistentIndexRefresh`]
366+
| https://neo4j.com/docs/operations-manual/current/procedures/#procedure_db_index_fulltext_awaiteventuallyconsistentindexrefresh[`db.index.fulltext.awaitEventuallyConsistentIndexRefresh`]
367367
| Wait for the updates from recently committed transactions to be applied to any eventually-consistent full-text indexes.
368368

369369
| List available analyzers.
370-
| https://neo4j.com/docs/operations-manual/current/reference/procedures/#procedure_db_index_fulltext_listavailableanalyzers[`db.index.fulltext.listAvailableAnalyzers`]
370+
| https://neo4j.com/docs/operations-manual/current/procedures/#procedure_db_index_fulltext_listavailableanalyzers[`db.index.fulltext.listAvailableAnalyzers`]
371371
| List the available analyzers that the full-text indexes can be configured with.
372372

373373
| Use full-text node index.
374-
| https://neo4j.com/docs/operations-manual/current/reference/procedures/#procedure_db_index_fulltext_querynodes[`db.index.fulltext.queryNodes`]
374+
| https://neo4j.com/docs/operations-manual/current/procedures/#procedure_db_index_fulltext_querynodes[`db.index.fulltext.queryNodes`]
375375
| Query the given full-text index. Returns the matching nodes and their Lucene query score, ordered by score.
376376

377377
| Use full-text relationship index.
378-
| https://neo4j.com/docs/operations-manual/current/reference/procedures/#procedure_db_index_fulltext_queryrelationships[`db.index.fulltext.queryRelationships`]
378+
| https://neo4j.com/docs/operations-manual/current/procedures/#procedure_db_index_fulltext_queryRelationships[`db.index.fulltext.queryRelationships`]
379379
| Query the given full-text index. Returns the matching relationships and their Lucene query score, ordered by score.
380380

381381
|===

0 commit comments

Comments
 (0)