Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix up internal imports

+4 -5
+2 -4
alias/error/GraphQLError.mjs
··· 1 1 import { getLocation } from 'graphql/language/location'; 2 - import { 3 - printLocation, 4 - printSourceLocation, 5 - } from 'graphql/language/printLocation'; 2 + 3 + import { printLocation, printSourceLocation } from '../language/printLocation'; 6 4 7 5 export class GraphQLError extends Error { 8 6 constructor(
+2 -1
alias/language/parser.mjs
··· 4 4 * in graphql.js it will only parse the query language, but not the schema 5 5 * language. 6 6 */ 7 - import { Kind, GraphQLError } from 'graphql'; 7 + import { Kind } from 'graphql'; 8 + import { GraphQLError } from '../error/GraphQLError'; 8 9 import { match, parse as makeParser } from 'reghex'; 9 10 10 11 // 2.1.7: Includes commas, and line comments