Current section

Files

Jump to
absinthe lib absinthe blueprint document fragment spread.ex
Raw

lib/absinthe/blueprint/document/fragment/spread.ex

defmodule Absinthe.Blueprint.Document.Fragment.Spread do
alias Absinthe.Blueprint
@enforce_keys [:name]
defstruct [
:name,
directives: [],
source_location: nil,
# Populated by phases
flags: %{},
errors: [],
]
@type t :: %__MODULE__{
directives: [Blueprint.Document.Directive.t],
errors: [Absinthe.Phase.Error.t],
name: String.t,
flags: Blueprint.flags_t,
source_location: nil | Blueprint.Document.SourceLocation.t,
}
end