@@ -123,7 +123,7 @@ public Value<?> valueToLiteral(Object input) {
123
123
};
124
124
125
125
GraphQLLong = GraphQLScalarType .newScalar ()
126
- .name ("Long" ).description ("Long type " )
126
+ .name ("Long" ).description ("A 64-bit signed integer " )
127
127
.coercing (longCoercing ).build ();
128
128
}
129
129
@@ -202,7 +202,7 @@ public Value<?> valueToLiteral(Object input) {
202
202
};
203
203
204
204
GraphQLShort = GraphQLScalarType .newScalar ()
205
- .name ("Short" ).description ("Short as Int " )
205
+ .name ("Short" ).description ("A 16-bit signed integer " )
206
206
.coercing (shortCoercing ).build ();
207
207
}
208
208
@@ -281,7 +281,7 @@ public Value<?> valueToLiteral(Object input) {
281
281
};
282
282
283
283
GraphQLByte = GraphQLScalarType .newScalar ()
284
- .name ("Byte" ).description ("Byte as Int " )
284
+ .name ("Byte" ).description ("An 8-bit signed integer " )
285
285
.coercing (byteCoercing ).build ();
286
286
}
287
287
@@ -368,7 +368,7 @@ public Value<?> valueToLiteral(Object input) {
368
368
};
369
369
370
370
GraphQLBigInteger = GraphQLScalarType .newScalar ()
371
- .name ("BigInteger" ).description ("java.math.BigInteger " )
371
+ .name ("BigInteger" ).description ("An arbitrary precision signed integer " )
372
372
.coercing (bigIntCoercing ).build ();
373
373
}
374
374
@@ -443,7 +443,7 @@ public Value<?> valueToLiteral(Object input) {
443
443
};
444
444
445
445
GraphQLBigDecimal = GraphQLScalarType .newScalar ()
446
- .name ("BigDecimal" ).description ("java.math.BigDecimal " )
446
+ .name ("BigDecimal" ).description ("An arbitrary precision signed decimal " )
447
447
.coercing (bigDecimalCoercing ).build ();
448
448
}
449
449
@@ -514,7 +514,7 @@ public Value<?> valueToLiteral(Object input) {
514
514
};
515
515
516
516
GraphQLChar = GraphQLScalarType .newScalar ()
517
- .name ("Char" ).description ("Char as Character " )
517
+ .name ("Char" ).description ("A UTF-16 code unit; a character on Unicode's BMP " )
518
518
.coercing (characterCoercing ).build ();
519
519
}
520
520
}
0 commit comments