Current section

Files

Jump to
graphqexl lib graphqexl schema enum.ex
Raw

lib/graphqexl/schema/enum.ex

defmodule Graphqexl.Schema.Enum do
@moduledoc """
GraphQL enum
"""
defstruct name: "", values: []
@type t :: %Graphqexl.Schema.Enum{name: String.t(), values: list(Map.t())}
end