Sha256: a83f83135959d2d8842dd0b87add242c2c4be32a41648237d440be30c69ea6b2
Contents?: true
Size: 363 Bytes
Versions: 28
Compression:
Stored size: 363 Bytes
Contents
GraphQL::Directive::IncludeDirective = GraphQL::Directive.define do name "include" description "Include this part of the query if `if` is true" locations([GraphQL::Directive::FIELD, GraphQL::Directive::FRAGMENT_SPREAD, GraphQL::Directive::INLINE_FRAGMENT]) argument :if, !GraphQL::BOOLEAN_TYPE include_proc -> (arguments) { arguments["if"] } end
Version data entries
28 entries across 28 versions & 1 rubygems