Sha256: ae5fff906c5b81ac383494e0f3e6d59fc78099a444b29b711ad43048997d9a03

Contents?: true

Size: 303 Bytes

Versions: 1

Compression:

Stored size: 303 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
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
graphql-1.3.0 lib/graphql/introspection/type_kind_enum.rb