lib/graphql/introspection/interfaces_field.rb in graphql-0.19.3 vs lib/graphql/introspection/interfaces_field.rb in graphql-0.19.4
- old
+ new
@@ -1,4 +1,4 @@
GraphQL::Introspection::InterfacesField = GraphQL::Field.define do
type -> { types[!GraphQL::Introspection::TypeType] }
- resolve -> (target, a, c) { target.kind.object? ? target.interfaces : nil }
+ resolve ->(target, a, c) { target.kind.object? ? target.interfaces : nil }
end