Interface GraphQLFormattedError

A single GraphQL error returned by the server (per the GraphQL spec).

interface GraphQLFormattedError {
    message: string;
    path?: readonly (string | number)[];
    locations?: readonly { line: number; column: number }[];
    extensions?: Readonly<Record<string, unknown>>;
}

Properties

message: string
path?: readonly (string | number)[]
locations?: readonly { line: number; column: number }[]
extensions?: Readonly<Record<string, unknown>>