Skip to content

Commit fc2f3e4

Browse files
committed
Merge remote-tracking branch 'upstream/master' into docs/readme-makeover
2 parents f58d063 + 6a38e82 commit fc2f3e4

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
This library provides extended scalars for [graphql-java](https://github.com/graphql-java/graphql-java)
1111

12-
[GraphQL Scalars](https://spec.graphql.org/draft/#sec-Scalars) are the primitive leaf values in the GraphQL type system and can't be queried further via sub-field selections.
12+
[GraphQL Scalars](https://spec.graphql.org/draft/#sec-Scalars) are the primitive leaf values in the GraphQL type system which cannot be queried further via sub-field selections.
1313

14-
The GraphQL Specification defines `String`, `Int`, `Float`, `Boolean` and `ID` as well-defined [built-in scalars](https://spec.graphql.org/October2021/#sec-Scalars.Built-in-Scalars) that must be present in a graphql type
15-
system. Beyond these, it is up to an implementation about what [custom scalars](https://spec.graphql.org/October2021/#sec-Scalars.Custom-Scalars) are present.
14+
The GraphQL Specification defines `String`, `Int`, `Float`, `Boolean` and `ID` as well-defined [built-in scalars](https://spec.graphql.org/draft/#sec-Scalars.Built-in-Scalars) that must be present in a graphql type
15+
system. Beyond these, it is up to an implementation to decide what [custom scalars](https://spec.graphql.org/draft/#sec-Scalars.Custom-Scalars) are present.
1616

1717
You would use custom scalars when you want to describe more meaningful behavior or ranges of values.
1818

@@ -32,7 +32,7 @@ or the following into your Maven config
3232
<dependency>
3333
<groupId>com.graphql-java</groupId>
3434
<artifactId>graphql-java-extended-scalars</artifactId>
35-
<version>20.0</version>
35+
<version>20.2</version>
3636
</dependency>
3737
```
3838

@@ -42,8 +42,6 @@ or the following into your Maven config
4242
>
4343
> use 20.0 or above for graphql-java 20.x and above
4444
45-
It's currently available from Maven Central.
46-
4745
## How to use extended scalars
4846

4947
### Direct use
@@ -70,7 +68,7 @@ public class GraphQlConfig {
7068

7169
### Netflix DGS
7270

73-
If you are using [Netflix DGS](https://netflix.github.io/dgs), please see their [configuration documentation](https://netflix.github.io/dgs/configuration/#dgs-extended-scalars-graphql-dgs-extended-scalars)
71+
If you are using [Netflix DGS](https://netflix.github.io/dgs), please see their [configuration documentation](https://netflix.github.io/dgs/configuration/#dgs-extended-scalars-graphql-dgs-extended-scalars).
7472

7573
## How to add extended scalars to your schema
7674

0 commit comments

Comments
 (0)