Sha256: 38ec21ac0532d6687d3b96339402bfc2214648470791a7441e4cab8195912335
Contents?: true
Size: 477 Bytes
Versions: 46
Compression:
Stored size: 477 Bytes
Contents
# frozen_string_literal: true GraphQL::Introspection::DirectiveLocationEnum = GraphQL::EnumType.define do name "__DirectiveLocation" description "A Directive can be adjacent to many parts of the GraphQL language, a "\ "__DirectiveLocation describes one such possible adjacencies." GraphQL::Directive::LOCATIONS.each do |location| value(location.to_s, GraphQL::Directive::LOCATION_DESCRIPTIONS[location], value: location) end introspection true end
Version data entries
46 entries across 46 versions & 1 rubygems