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
@enforce_keys [:name, :source_location]
defstruct [
:name,
:source_location,
]
@type t :: %__MODULE__{
name: String.t,
source_location: nil | Blueprint.Document.SourceLocation.t,
}
end