Mirror: The spec-compliant minimum of client-side GraphQL.
1export type Maybe<T> = T | undefined | null; 2 3export interface Extensions { 4 [extension: string]: unknown; 5} 6 7export type Source = 8 | any 9 | { 10 body: string; 11 name: string; 12 locationOffset: { 13 line: number; 14 column: number; 15 }; 16 }; 17 18export type Location = 19 | any 20 | { 21 start: number; 22 end: number; 23 source: Source; 24 };