Sha256: 9f51bdf0aca259d48f1c675f0175905fb6ac0d63d03999638177fc3018bcb6c4
Contents?: true
Size: 379 Bytes
Versions: 55
Compression:
Stored size: 379 Bytes
Contents
GraphQL::Introspection::EnumValueType = GraphQL::ObjectType.define do name "__EnumValue" description "A possible value for an Enum" field :name, !types.String field :description, types.String field :deprecationReason, types.String, property: :deprecation_reason field :isDeprecated, !types.Boolean do resolve -> (obj, a, c) { !!obj.deprecation_reason } end end
Version data entries
55 entries across 55 versions & 1 rubygems