Sha256: 7232d0e8c1debd94a5441375367550f4f6da1897b24af1b1aa18f761dee665ba
Contents?: true
Size: 324 Bytes
Versions: 46
Compression:
Stored size: 324 Bytes
Contents
# frozen_string_literal: true GraphQL::Introspection::TypeKindEnum = GraphQL::EnumType.define do 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
Version data entries
46 entries across 46 versions & 1 rubygems