ash/lib/ash/not_loaded.ex
2020-09-23 21:06:12 -04:00

17 lines
422 B
Elixir

defmodule Ash.NotLoaded do
@moduledoc "Used when an aggregate or relationship hasn't been loaded."
defstruct [:field, :type]
@type t :: %__MODULE__{
field: atom,
type: :relationship | :calculation | :aggregate
}
defimpl Inspect do
import Inspect.Algebra
def inspect(not_loaded, opts) do
concat(["#Ash.NotLoaded<", to_doc(not_loaded.type, opts), ">"])
end
end
end