Current section

Files

Jump to
graphqexl lib graphqexl schema field.ex
Raw

lib/graphqexl/schema/field.ex

alias Graphqexl.Schema.Ref
defmodule Graphqexl.Schema.Field do
@moduledoc """
GraphQL field, belonging to e.g. a Type or Interface
"""
defstruct(
deprecated: false,
deprectation_reason: "",
description: "",
name: "",
value: %Ref{},
)
end