TypedGql.Language.InputObjectTypeDefinition (TypedGql v0.13.0)

Copy Markdown View Source

An input definition: an object type usable only as an argument or variable value.

Summary

Types

t()

@type t() :: %TypedGql.Language.InputObjectTypeDefinition{
  description: String.t() | nil,
  directives: [TypedGql.Language.Directive.t()],
  fields: [TypedGql.Language.InputValueDefinition.t()],
  loc: map(),
  name: String.t() | nil
}