mobilizon.chapril.org-mobil.../lib/mobilizon_web/schema/utils.ex
Thomas Citharel f3d37325fa
Add missing @moduledoc for MobilizonWeb.Schema.Utils
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2019-02-07 10:27:54 +01:00

26 lines
615 B
Elixir

defmodule MobilizonWeb.Schema.Utils do
@moduledoc """
Helper functions for MobilizonWeb.Schema
"""
def handle_errors(fun) do
fn source, args, info ->
case Absinthe.Resolution.call(fun, source, args, info) do
{:error, %Ecto.Changeset{} = changeset} -> format_changeset(changeset)
val -> val
end
end
end
def format_changeset(changeset) do
# {:error, [email: {"has already been taken", []}]}
errors =
changeset.errors
|> Enum.map(fn {key, {value, _context}} ->
[message: "#{value}", details: key]
end)
{:error, errors}
end
end