Package version:

An error produced by the compiler.

interface QueryCompilationError {
    endColumn?: number;
    endLine?: number;
    isGlobal?: boolean;
    message?: string;
    startColumn?: number;
    startLine?: number;
}

Properties

endColumn?: number

Describes the error location in the original query. Not set if isGlobal is true. NOTE: This property will not be serialized. It can only be populated by the server.

endLine?: number

Describes the error location in the original query. Not set if isGlobal is true. NOTE: This property will not be serialized. It can only be populated by the server.

isGlobal?: boolean

Whether the error is not for a specific part but for the entire query. NOTE: This property will not be serialized. It can only be populated by the server.

message?: string

The content of the error message. NOTE: This property will not be serialized. It can only be populated by the server.

startColumn?: number

Describes the error location in the original query. Not set if isGlobal is true. NOTE: This property will not be serialized. It can only be populated by the server.

startLine?: number

Describes the error location in the original query. Not set if isGlobal is true. NOTE: This property will not be serialized. It can only be populated by the server.

Generated using TypeDoc