@@ -23,6 +23,11 @@ public Object coerce(Object input) {
2323 }
2424 }
2525
26+ @ Override
27+ public Object coerceValue (Object input ) {
28+ return null ;
29+ }
30+
2631 @ Override
2732 public Object coerceLiteral (Object input ) {
2833 if (!(input instanceof IntValue )) return null ;
@@ -45,6 +50,11 @@ public Object coerce(Object input) {
4550 }
4651 }
4752
53+ @ Override
54+ public Object coerceValue (Object input ) {
55+ return null ;
56+ }
57+
4858 @ Override
4959 public Object coerceLiteral (Object input ) {
5060 if (!(input instanceof StringValue )) return null ;
@@ -64,6 +74,11 @@ public Object coerce(Object input) {
6474 }
6575 }
6676
77+ @ Override
78+ public Object coerceValue (Object input ) {
79+ return null ;
80+ }
81+
6782 @ Override
6883 public Object coerceLiteral (Object input ) {
6984 return ((FloatValue ) input ).getValue ().floatValue ();
@@ -76,6 +91,11 @@ public Object coerce(Object input) {
7691 return input == null ? null : input .toString ();
7792 }
7893
94+ @ Override
95+ public Object coerceValue (Object input ) {
96+ return null ;
97+ }
98+
7999 @ Override
80100 public Object coerceLiteral (Object input ) {
81101 if (!(input instanceof StringValue )) return null ;
@@ -98,6 +118,11 @@ public Object coerce(Object input) {
98118 }
99119 }
100120
121+ @ Override
122+ public Object coerceValue (Object input ) {
123+ return null ;
124+ }
125+
101126 @ Override
102127 public Object coerceLiteral (Object input ) {
103128 if (!(input instanceof BooleanValue )) return null ;
@@ -116,6 +141,11 @@ public Object coerce(Object input) {
116141 throw new GraphQLException ();
117142 }
118143
144+ @ Override
145+ public Object coerceValue (Object input ) {
146+ return null ;
147+ }
148+
119149 @ Override
120150 public Object coerceLiteral (Object input ) {
121151 if (!(input instanceof StringValue )) return null ;
0 commit comments