Current section

Files

Jump to
absinthe lib absinthe blueprint input null.ex
Raw

lib/absinthe/blueprint/input/null.ex

defmodule Absinthe.Blueprint.Input.Null do
@moduledoc false
alias Absinthe.{Blueprint, Phase}
defstruct [
:source_location,
# Added by phases
flags: %{},
schema_node: nil,
errors: []
]
@type t :: %__MODULE__{
flags: Blueprint.flags_t(),
schema_node: nil | Absinthe.Type.t(),
source_location: Blueprint.SourceLocation.t(),
errors: [Phase.Error.t()]
}
end