Represents the location within your query where the error occurred.

interface GraphQLErrorLocation {
    column: number;
    line: number;
}

Properties

Properties

column: number

Position in line where the error occurred.

line: number

Line number of the query where the error occurred.