File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
src/main/java/graphql/annotations/processor/typeFunctions Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 33
44name : Build
55
6- on : [push]
6+ on : [push, pull_request ]
77
88jobs :
99 build :
1919 run : chmod +x gradlew
2020 - name : Build with Gradle
2121 run : ./gradlew build
22- - name : Test with Gradle
23- run : ./gradlew test
2422 - name : Publish Test Report
2523 uses : mikepenz/action-junit-report@v2
2624 if : always() # always run even if the previous step fails
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ If you would like to use a tool that creates a graphql spring boot server using
3737
3838``` groovy
3939dependencies {
40- compile "io.github.graphql-java:graphql-java-annotations:8.5 "
40+ compile "io.github.graphql-java:graphql-java-annotations:9.0 "
4141}
4242```
4343
@@ -47,7 +47,7 @@ dependencies {
4747<dependency>
4848 <groupId>io.github.graphql-java</groupId>
4949 <artifactId>graphql-java-annotations</artifactId>
50- <version>8.5 </version>
50+ <version>9.0 </version>
5151</dependency>
5252```
5353
Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ public void activate() {
5555 typeFunctions .add (new BooleanFunction ());
5656 typeFunctions .add (new FloatFunction ());
5757 typeFunctions .add (new IntegerFunction ());
58+ typeFunctions .add (new LongFunction ());
59+ typeFunctions .add (new ByteFunction ());
60+ typeFunctions .add (new ShortFunction ());
61+ typeFunctions .add (new BigIntegerFunction ());
62+ typeFunctions .add (new BigDecimalFunction ());
63+ typeFunctions .add (new CharFunction ());
5864 typeFunctions .add (new IterableFunction (DefaultTypeFunction .this ));
5965 typeFunctions .add (new ArrayFunction (DefaultTypeFunction .this ));
6066 typeFunctions .add (new StreamFunction (DefaultTypeFunction .this ));
You can’t perform that action at this time.
0 commit comments