Skip to content

Commit 5928317

Browse files
committed
Merge pull request #134 from neo4j/update-for-type-definitions
Update for type definitions
1 parent 3868b13 commit 5928317

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
@@ -1,7 +1,6 @@
11
[[types]]
22
:description: This page lists all types available in the Neo4j GraphQL Library.
33
= Types
4-
:page-aliases: type-definitions/types.adoc
54

65
The Neo4j GraphQL Library provides the following types:
76

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

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

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

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

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

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

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

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

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

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

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

5453
|===

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)