Sha256: b482e813011d3937313f1b79eb7821568f99f5f8b2311f53fcc5565484ab63e0
Contents?: true
Size: 307 Bytes
Versions: 39
Compression:
Stored size: 307 Bytes
Contents
# frozen_string_literal: true GraphQL::Introspection::InputFieldsField = GraphQL::Field.define do name "inputFields" type types[!GraphQL::Introspection::InputValueType] resolve ->(target, a, ctx) { if target.kind.input_object? ctx.warden.arguments(target) else nil end } end
Version data entries
39 entries across 39 versions & 1 rubygems