We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ecc3e3 commit 10be2d3Copy full SHA for 10be2d3
1 file changed
README.md
@@ -24,15 +24,19 @@ You would use custom scalars when you want to describe more meaningful behavior
24
25
To use this library put the following into your gradle config
26
27
+```java
28
implementation 'com.graphql-java:graphql-java-extended-scalars:20.0'
29
+```
30
31
or the following into your Maven config
32
33
+```xml
34
<dependency>
35
<groupId>com.graphql-java</groupId>
36
<artifactId>graphql-java-extended-scalars</artifactId>
37
<version>20.0</version>
38
</dependency>
39
40
41
> Note:
42
>
@@ -67,6 +71,7 @@ And use the scalar in your schema
67
71
```graphql
68
72
scalar DateTime
69
73
@specifiedBy(url: "https://scalars.graphql.org/andimarek/date-time.html")
74
+
70
75
type Something {
76
someDateTime: DateTime
77
}
0 commit comments