Current section

Files

Jump to
absinthe lib absinthe blueprint input variable use.ex
Raw

lib/absinthe/blueprint/input/variable/use.ex

defmodule Absinthe.Blueprint.Input.Variable.Use do
@moduledoc false
alias Absinthe.Blueprint
@enforce_keys [:name, :source_location]
defstruct [
:name,
:source_location
]
@type t :: %__MODULE__{
name: String.t(),
source_location: nil | Blueprint.SourceLocation.t()
}
end