lib/graphql/introspection/arguments_field.rb in graphql-0.18.15 vs lib/graphql/introspection/arguments_field.rb in graphql-0.19.0
- old
+ new
@@ -1,5 +1,4 @@
GraphQL::Introspection::ArgumentsField = GraphQL::Field.define do
- description "Arguments allowed to this object"
type !GraphQL::ListType.new(of_type: !GraphQL::Introspection::InputValueType)
resolve -> (target, a, c) { target.arguments.values }
end