Skip to content

Commit ea40bb9

Browse files
Fix links (#1265)
1 parent 4ea675e commit ea40bb9

File tree

18 files changed

+75
-74
lines changed

18 files changed

+75
-74
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: 2 additions & 1 deletion
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[]

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/genai-integrations.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,12 @@ Supported values: +
297297

298298
| taskType
299299
| STRING
300-
| The intended downstream application (see link:https://cloud.google.com/vertex-ai/generative-ai/docs/embeddings/get-text-embeddings#api_changes_to_models_released_on_or_after_august_2023[provider documentation]). The specified `taskType` will apply to all resources in a batch. label:new[Introduced in 5.19]
300+
| The intended downstream application (see link:https://cloud.google.com/vertex-ai/generative-ai/docs/embeddings/get-text-embeddings/[provider documentation]). The specified `taskType` will apply to all resources in a batch. label:new[Introduced in 5.19]
301301
|
302302

303303
| title
304304
| STRING
305-
| The title of the document that is being encoded (see link:https://cloud.google.com/vertex-ai/generative-ai/docs/embeddings/get-text-embeddings#api_changes_to_models_released_on_or_after_august_2023[provider documentation]). The specified `title` will apply to all resources in a batch. label:new[Introduced in 5.19]
305+
| The title of the document that is being encoded (see link:https://cloud.google.com/vertex-ai/generative-ai/docs/embeddings/get-text-embeddings/[provider documentation]). The specified `title` will apply to all resources in a batch. label:new[Introduced in 5.19]
306306
|
307307
|===
308308

0 commit comments

Comments
 (0)