GraphQLResponseErrorLocation constructor

const GraphQLResponseErrorLocation(
  1. int line,
  2. int column
)

Represents a location in the GraphQL request document where an error occurred. line and column correspond to the beginning of the syntax element associated with the error.

Implementation

const GraphQLResponseErrorLocation(this.line, this.column);