Skip to content

Commit 0396a82

Browse files
committed
review suggestions
1 parent 15ef1ae commit 0396a82

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

modules/ROOT/pages/directives/autogeneration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This enables autogeneration of IDs for the field.
1515
The format of each generated ID is a UUID generated by the link:https://neo4j.com/docs/cypher-manual/current/functions/scalar/#functions-randomuuid[`randomUUID()` function].
1616
The field will not be present in input types for mutations.
1717

18-
It is recommended to use xref::/directives/indexes-and-constraints.adoc#_unique_node_property_constraints[`@unique`] in conjunction with this to add a unique node property constraint.
18+
It is recommended to use xref::/directives/indexes-and-constraints.adoc#_unique[`@unique`] in conjunction with this to add a unique node property constraint.
1919

2020
=== Definition
2121

modules/ROOT/pages/directives/custom-logic.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ new Neo4jGraphQL({
558558
})
559559
----
560560

561-
=== Context values
561+
==== Context values
562562

563563
The GraphQL context for the request is available as the third argument in a callback.
564564
This maps to the argument pattern for GraphQL resolvers.

modules/ROOT/pages/directives/database-mapping.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ type Dog @node(labels: ["K9", "Dog"]) {
187187
}
188188
----
189189

190-
See xref::/directives/indexes-and-constraints.adoc#_unique_node_property_constraints[`@unique`] to learn more about the `@unique` directive.
190+
See xref::/directives/indexes-and-constraints.adoc#_unique[`@unique`] to learn more about the `@unique` directive.
191191

192192

193193
==== Using `$jwt` and `$context`

modules/ROOT/pages/directives/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ Particularly useful for types that are not correctly pluralized or are non-Engli
105105
|===
106106
| Directive | Description
107107

108-
| xref::/directives/indexes-and-constraints.adoc#_fulltext_indexes[`@fulltext`]
108+
| xref::/directives/indexes-and-constraints.adoc#_fulltext[`@fulltext`]
109109
| Indicates that there should be a fulltext index inserted into the database for the specified Node and its properties.
110110

111-
| xref::/directives/indexes-and-constraints.adoc#_unique_node_property_constraints[`@unique`]
111+
| xref::/directives/indexes-and-constraints.adoc#_unique[`@unique`]
112112
| Indicates that there should be a uniqueness constraint in the database for the fields that it is applied to.
113113

114114
| xref::/directives/indexes-and-constraints.adoc#_vector_index_search[`@vector`]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
This page describes how to use indexes and constraints in the Neo4j GraphQL Library.
77

8-
[#_fulltext_indexes]
8+
99
== `@fulltext`
1010

1111
=== Definition
@@ -165,7 +165,7 @@ query {
165165
}
166166
----
167167

168-
[#_unique_node_property_constraints]
168+
169169
== `@unique`
170170

171171
=== Definition

0 commit comments

Comments
 (0)