Skip to content

Commit 3868b13

Browse files
committed
removed three broken links
1 parent c3e8c7c commit 3868b13

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/ROOT/pages/ogm/reference.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following sections work as a reference guide to all functionalities in OGM a
1616

1717
|`constructor`
1818
|Returns an `OGM` instance.
19-
Takes an `input` object as a parameter, which is then passed to the `Neo4jGraphQL` constructor. Supported options are listed in the documentation for xref::reference/api-reference/neo4jgraphql.adoc[`Neo4jGraphQL`].
19+
Takes an `input` object as a parameter, which is then passed to the `Neo4jGraphQL` constructor.
2020
a|
2121
[source, javascript, indent=0]
2222
----
@@ -27,7 +27,7 @@ const ogm = new OGM({
2727

2828
|`init`
2929
|Asynchronous method to initialize the OGM.
30-
Internally, calls xref::reference/api-reference/neo4jgraphql.adoc#api-reference-getschema[`Neo4jGraphQL.getSchema()`] to generate a GraphQL schema, and stores the result.
30+
Internally, calls `Neo4jGraphQL.getSchema()` to generate a GraphQL schema, and stores the result.
3131
Initializes any models which have been created before this execution, and will throw an error if any of them are invalid.
3232
a|
3333
[source, javascript, indent=0]

modules/ROOT/pages/type-definitions/directives/indexes-and-constraints.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ query {
225225

226226
== Asserting constraints
227227

228-
In order to ensure that the specified constraints exist in the database, you need to run the function `assertIndexesAndConstraints` (see more details in xref::reference/api-reference/neo4jgraphql.adoc#api-reference-assertconstraints[API reference]).
228+
In order to ensure that the specified constraints exist in the database, you need to run the function `assertIndexesAndConstraints`.
229229
A simple example to create the necessary constraints might look like the following, assuming a valid driver instance in the variable `driver`.
230230
This creates two constraints, one for each field decorated with `@id` and `@unique`, and apply the indexes specified in `@fulltext`:
231231

0 commit comments

Comments
 (0)