Skip to content

Commit

Permalink
fix: Built-in scalar naming consistency
Browse files Browse the repository at this point in the history
- renamed `GraphQLBigIntegerType` to `GraphQLIntegerType`
  • Loading branch information
LSafer committed Jan 9, 2023
1 parent 041bc9d commit ea86469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/kotlin/schema/BuiltinTypes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ val GraphQLDecimalType: GraphQLScalarType<BigDecimal> = GraphQLScalarType("Decim
*
* @since 2.0.0
*/
val GraphQLBigIntegerType: GraphQLScalarType<BigInteger> = GraphQLScalarType("Integer") {
val GraphQLIntegerType: GraphQLScalarType<BigInteger> = GraphQLScalarType("Integer") {
description { "Integer" }
decode {
require(it is GraphQLInt) {
Expand Down

0 comments on commit ea86469

Please sign in to comment.