Current section
Files
Jump to
Current section
Files
lib/graphql_query/validation_error.ex
defmodule GraphqlQuery.ValidationError do
@moduledoc """
Represents a validation error in a GraphQL query or schema.
"""
defstruct message: "", locations: []
@type t :: %__MODULE__{
message: String.t(),
locations: [GraphqlQuery.Location.t()]
}
end