Skip to content

Commit ea86469

Browse files
committed
fix: Built-in scalar naming consistency
- renamed `GraphQLBigIntegerType` to `GraphQLIntegerType`
1 parent 041bc9d commit ea86469

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/kotlin/schema/BuiltinTypes.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ val GraphQLDecimalType: GraphQLScalarType<BigDecimal> = GraphQLScalarType("Decim
154154
*
155155
* @since 2.0.0
156156
*/
157-
val GraphQLBigIntegerType: GraphQLScalarType<BigInteger> = GraphQLScalarType("Integer") {
157+
val GraphQLIntegerType: GraphQLScalarType<BigInteger> = GraphQLScalarType("Integer") {
158158
description { "Integer" }
159159
decode {
160160
require(it is GraphQLInt) {

0 commit comments

Comments
 (0)