We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83ccbe2 commit a9e87ceCopy full SHA for a9e87ce
src/index.js
@@ -178,6 +178,8 @@ export type {
178
export {
179
Source,
180
getLocation,
181
+ // Lex
182
+ createLexer,
183
// Parse
184
parse,
185
parseValue,
@@ -327,7 +329,13 @@ export {
327
329
export type { ValidationRule } from './validation';
328
330
331
// Create, format, and print GraphQL errors.
-export { GraphQLError, formatError, printError } from './error';
332
+export {
333
+ GraphQLError,
334
+ syntaxError,
335
+ locatedError,
336
+ printError,
337
+ formatError,
338
+} from './error';
339
340
export type { GraphQLFormattedError } from './error';
341
0 commit comments