Sha256: b33d2b9b521f00f0da89ff6e51c7c4e0db515e8da4e2249a49daadf63699f444
Contents?: true
Size: 638 Bytes
Versions: 26
Compression:
Stored size: 638 Bytes
Contents
GraphQL::Introspection::DirectiveType = GraphQL::ObjectType.define do name "__Directive" description "A query directive in this schema" field :name, !types.String, "The name of this directive" field :description, types.String, "The description for this type" field :args, field: GraphQL::Introspection::ArgumentsField field :onOperation, !types.Boolean, "Does this directive apply to operations?", property: :on_operation? field :onFragment, !types.Boolean, "Does this directive apply to fragments?", property: :on_fragment? field :onField, !types.Boolean, "Does this directive apply to fields?", property: :on_field? end
Version data entries
26 entries across 26 versions & 1 rubygems