Current section

Files

Jump to
graphqexl lib graphqexl query result_set.ex
Raw

lib/graphqexl/query/result_set.ex

defmodule Graphqexl.Query.ResultSet do
@moduledoc """
Result of a GraphQL operation, including any errors
"""
defstruct data: %{}, errors: %{}
@type t :: %Graphqexl.Query.ResultSet{data: Map.t, errors: Map.t}
end