Location

class Location(val line: Int, val column: Int)

Represents the location of the error in the GraphQL operation sent to the server. This location is represented in terms of the line and column number.

Constructors

Link copied to clipboard
constructor(line: Int, column: Int)

Properties

Link copied to clipboard
val column: Int

Column number of the error location.

Link copied to clipboard
val line: Int

Line number of the error location

Functions

Link copied to clipboard
open override fun toString(): String