Current section

Files

Jump to
absinthe lib absinthe blueprint input raw_value.ex
Raw

lib/absinthe/blueprint/input/raw_value.ex

defmodule Absinthe.Blueprint.Input.RawValue do
@moduledoc false
@enforce_keys [:content]
defstruct [
:content
]
@type t :: %__MODULE__{
content: any()
}
end