Sha256: 5cf2d9ce7a1d72bfd11ba811163e9d77de21a9e3ae236599601fa96e617baa5f
Contents?: true
Size: 303 Bytes
Versions: 57
Compression:
Stored size: 303 Bytes
Contents
# frozen_string_literal: true module GraphQL module Introspection class DynamicFields < Introspection::BaseObject field :__typename, String, "The name of this type", null: false, dynamic_introspection: true def __typename object.class.graphql_name end end end end
Version data entries
57 entries across 57 versions & 1 rubygems