Current section

Files

Jump to
graphqexl lib graphqexl schema query.ex
Raw

lib/graphqexl/schema/query.ex

alias Graphqexl.Schema.Ref
defmodule Graphqexl.Schema.Query do
@moduledoc """
GraphQL query
"""
defstruct arguments: [], name: "", fields: %{}, return: %Ref{}
@type t ::
%Graphqexl.Schema.Query{
arguments: Map.t(),
name: String.t(),
fields: Map.t(),
return: Ref.t()
}
end