GraphQL v0.3.2 GraphQL.Error

Represents the data structure for a single error.

Examples

iex> %GraphQL.Error{message: "GraphQL: syntax error before: '}' on line 1", line_number: 1}
%GraphQL.Error{line_number: 1,
 message: "GraphQL: syntax error before: '}' on line 1"}

Summary

Types

t :: %{message: String.t}