Sha256: 24e8850145e3a8e9a2425c3c608ba437f154c644f88e220df8a1cf8fb63428df
Contents?: true
Size: 307 Bytes
Versions: 18
Compression:
Stored size: 307 Bytes
Contents
# frozen_string_literal: true module GraphQL module Introspection class DynamicFields < Introspection::BaseObject field :__typename, String, "The name of this type", null: false, extras: [:irep_node] def __typename(irep_node:) irep_node.owner_type.name end end end end
Version data entries
18 entries across 18 versions & 1 rubygems