Current section

Files

Jump to
absinthe lib absinthe blueprint input string.ex
Raw

lib/absinthe/blueprint/input/string.ex

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