Sha256: fe200e5bab03b5bf5bd9ff223793f229f08c5543a7487eaacf0263e01fa2419b
Contents?: true
Size: 388 Bytes
Versions: 220
Compression:
Stored size: 388 Bytes
Contents
# frozen_string_literal: true module GraphQL module Introspection class TypeKindEnum < GraphQL::Schema::Enum graphql_name "__TypeKind" description "An enum describing what kind of type a given `__Type` is." GraphQL::TypeKinds::TYPE_KINDS.each do |type_kind| value(type_kind.name, type_kind.description) end introspection true end end end
Version data entries
220 entries across 220 versions & 2 rubygems