ash_graphql/lib/error.ex
2021-04-16 13:49:51 -04:00

73 lines
1.6 KiB
Elixir

defprotocol AshGraphql.Error do
def to_error(exception)
end
defimpl AshGraphql.Error, for: Ash.Error.Query.InvalidQuery do
def to_error(error) do
%{
message: Exception.message(error),
code: Ash.ErrorKind.code(error),
fields: [error.field]
}
end
end
defimpl AshGraphql.Error, for: Ash.Error.Changes.InvalidAttribute do
def to_error(error) do
%{
message: Exception.message(error),
code: Ash.ErrorKind.code(error),
fields: [error.field]
}
end
end
defimpl AshGraphql.Error, for: Ash.Error.Changes.InvalidArgument do
def to_error(error) do
%{
message: Exception.message(error),
code: Ash.ErrorKind.code(error),
fields: [error.field]
}
end
end
defimpl AshGraphql.Error, for: Ash.Error.Query.InvalidArgument do
def to_error(error) do
%{
message: Exception.message(error),
code: Ash.ErrorKind.code(error),
fields: [error.field]
}
end
end
defimpl AshGraphql.Error, for: Ash.Error.Changes.Required do
def to_error(error) do
%{
message: "is required",
code: Ash.ErrorKind.code(error),
fields: [error.field]
}
end
end
defimpl AshGraphql.Error, for: Ash.Error.Query.NotFound do
def to_error(error) do
%{
message: "not found",
fields: Map.keys(error.primary_key || %{}),
code: Ash.ErrorKind.code(error)
}
end
end
defimpl AshGraphql.Error, for: Ash.Error.Query.Required do
def to_error(error) do
%{
message: "is required",
code: Ash.ErrorKind.code(error),
fields: [error.field]
}
end
end