STRUCT
GraphQLError
public struct GraphQLError: Error
Represents an error encountered during the execution of a GraphQL operation.
Properties
message
public var message: String?
A description of the error.
locations
public var locations: [Location]?
A list of locations in the requested GraphQL document associated with the error.
extensions
public var extensions: [String : Any]?
A dictionary which services can use however they see fit to provide additional information in errors to clients.
Methods
init(_:)
public init(_ object: JSONObject)