Skip to content

Commit 78e5255

Browse files
authored
Merge pull request #134 from neo4j/update-for-type-definitions
Update for type definitions
2 parents 334e222 + 60ba13b commit 78e5255

File tree

3 files changed

+14
-17
lines changed

3 files changed

+14
-17
lines changed

modules/ROOT/pages/type-definitions/types/index.adoc

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
:description: This page lists all types available in the Neo4j GraphQL Library.
33

44
= Types
5-
:page-aliases: type-definitions/types.adoc
65

76
The Neo4j GraphQL Library provides the following types:
87

@@ -17,7 +16,7 @@ The Neo4j GraphQL Library provides the following types:
1716
| The `Float` scalar type represents a signed double-precision fractional value.
1817

1918
| xref::/type-definitions/types/scalar.adoc[`String`]
20-
| The `String` scalar type represents textual data, represented as UTF-8 character sequences.
19+
| The `String` scalar type represents textual data and consists of UTF-8 characters.
2120

2221
| xref::/type-definitions/types/scalar.adoc[`Boolean`]
2322
| The `Boolean` scalar type represents `true` or `false`.
@@ -29,27 +28,27 @@ The Neo4j GraphQL Library provides the following types:
2928
| The `BigInt` scalar type represents a signed 64-bit numeric non-fractional value.
3029

3130
| xref:/type-definitions/types/temporal.adoc[`Date`]
32-
| The `Date` scalar type is a ISO 8601 date mapping to the Neo4j `DATE` type.
31+
| The `Date` temporal scalar type is a ISO 8601 date mapping to the Neo4j `DATE` type.
3332

3433
| xref::/type-definitions/types/temporal.adoc[`Time`]
35-
| The `Time` scalar type is a ISO 8601 time of day and timezone mapping to the Neo4j `ZONED TIME` type.
34+
| The `Time` temporal scalar type is a ISO 8601 time of day and timezone mapping to the Neo4j `ZONED TIME` type.
3635

3736
| xref::/type-definitions/types/temporal.adoc[`LocalTime`]
38-
| The `LocalTime` scalar type is a ISO 8601 time of day mapping to the Neo4j `LOCAL TIME` type.
37+
| The `LocalTime` temporal scalar type is a ISO 8601 time of day mapping to the Neo4j `LOCAL TIME` type.
3938

4039
| xref::/type-definitions/types/temporal.adoc[`DateTime`]
41-
| The `DateTime` scalar type is a ISO 8601 date, time of day and timezone mapping to the Neo4j `ZONED DATETIME` type.
40+
| The `DateTime` temporal scalar type is a ISO 8601 date, time of day and timezone mapping to the Neo4j `ZONED DATETIME` type.
4241

4342
| xref:/type-definitions/types/temporal.adoc[`LocalDateTime`]
44-
| The `LocalDateTime` scalar type is a ISO 8601 date and time of day mapping to the Neo4j `LOCAL DATETIME` type.
43+
| The `LocalDateTime` temporal scalar type is an ISO 8601 date and time of day mapping to the Neo4j `LOCAL DATETIME` type.
4544

4645
| xref::/type-definitions/types/temporal.adoc[`Duration`]
47-
| The `Duration` scalar type is a ISO 8601 duration mapping to the Neo4j `DURATION` type.
46+
| The `Duration` temporal scalar type is an ISO 8601 duration mapping to the Neo4j `DURATION` type.
4847

4948
| xref::/type-definitions/types/spatial.adoc#point[`Point`]
50-
| The `Point` object type is a WGS 84 3D geographic point.
49+
| The `Point` spatial object type is a WGS 84 3D geographic point.
5150

5251
| xref::/type-definitions/types/spatial.adoc#cartesian-point[`CartesianPoint`]
53-
| The `CartesianPoint` object type is a Cartesian 3D point.
52+
| The `CartesianPoint` spatial object type is a Cartesian 3D point.
5453

5554
|===

modules/ROOT/pages/type-definitions/types/scalar.adoc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
:description: This page lists the default types available in the Neo4j GraphQL Library.
33
= Scalar types
44

5-
Neo4j GraphQL supports all of the built-in GraphQL https://graphql.org/learn/schema/#scalar-types[scalar types] as well as additional scalar and object types specific to the Neo4j database.
5+
Neo4j GraphQL supports all of the built-in GraphQL https://graphql.org/learn/schema/#scalar-types[scalar types].
6+
The `BigInt` scalar type is an addition specific to the Neo4j database.
67

78
== Scalar types
89

@@ -11,7 +12,7 @@ Neo4j GraphQL supports all of the built-in GraphQL https://graphql.org/learn/sch
1112
| Type | Description | Example
1213

1314
| `Int`
14-
| Supports up to 53-bit values.
15+
| Supports up to 32-bit values.
1516
a|
1617
[source, graphql, indent=0]
1718
----
@@ -73,7 +74,8 @@ type Product {
7374
----
7475

7576
| `ID`
76-
| Placeholder text to make the table prettier.
77+
| Represents a unique identifier.
78+
a|
7779
[source, graphql, indent=0]
7880
----
7981
type Product {

modules/ROOT/pages/type-definitions/types/temporal.adoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
:description: This page lists the temporal types available in the Neo4j GraphQL Library.
33
= Temporal types
44

5-
Neo4j GraphQL supports all of the default GraphQL https://graphql.org/learn/schema/#scalar-types[scalar types] as well as additional scalar and object types specific to the Neo4j database, such as the temporal types.
6-
7-
== Temporal types
8-
95
[cols="1,2,2"]
106
|===
117
| Type | Description | Example

0 commit comments

Comments
 (0)