lib/graphql/schema/loader.rb in graphql-1.9.7 vs lib/graphql/schema/loader.rb in graphql-1.9.8
- old
+ new
@@ -146,9 +146,10 @@
GraphQL::Argument.define(
name: type["name"],
type: type_resolver.call(type["type"]),
description: type["description"],
+ method_access: false,
**kwargs
)
when "SCALAR"
type_name = type.fetch("name")
if GraphQL::Schema::BUILT_IN_TYPES[type_name]