Convert old GraphQL types to newer type names
During conversion to using the new graphql interpreter, I ran across this same issue: https://github.com/rmosolgo/graphql-ruby/issues/2784
So doing all the type conversions here in preparation for !27536 (merged)
- Convert
GraphQL::ID_TYPE
toGraphQL::Types::ID
- Convert
GraphQL::INT_TYPE
toGraphQL::Types::Int
- Convert
GraphQL::STRING_TYPE
toGraphQL::Types::String
- Convert
GraphQL::BOOLEAN_TYPE
toGraphQL::Types::Boolean