TypedGql.Language.ObjectTypeDefinition (TypedGql v0.13.0)

Copy Markdown View Source

A type definition: a concrete object type, the interfaces it implements and the fields it exposes.

Summary

Types

t()

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