Sha256: 913ba4c363ba595e5a35128d40d0f857f969d8506a151a8dde74a8ee57b25969
Contents?: true
Size: 293 Bytes
Versions: 185
Compression:
Stored size: 293 Bytes
Contents
# frozen_string_literal: true module GraphQL module Introspection class BaseObject < GraphQL::Schema::Object introspection(true) def self.field(*args, **kwargs, &block) kwargs[:introspection] = true super(*args, **kwargs, &block) end end end end
Version data entries
185 entries across 185 versions & 2 rubygems