import { i32, Option, Vec } from "./_commons"; export interface GQLError { /** The graphql resource url */ src?: Option; /** * The error description * Content length should be max 1000 */ message: string; /** The error locations */ locations?: Option>; /** The error path */ path?: Option>; /** * The error extensions * Content length should be max 1000 */ extensions?: Option; } export interface GQLErrorLocation { /** The line number */ line: i32; /** The column number */ column: i32; }