File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ import { promiseForObject } from '../jsutils/promiseForObject';
1313import type { PromiseOrValue } from '../jsutils/PromiseOrValue' ;
1414import { promiseReduce } from '../jsutils/promiseReduce' ;
1515
16+ import type { GraphQLErrorBehavior } from '../error/ErrorBehavior' ;
17+ import { isErrorBehavior } from '../error/ErrorBehavior' ;
1618import type { GraphQLFormattedError } from '../error/GraphQLError' ;
1719import { GraphQLError } from '../error/GraphQLError' ;
1820import { locatedError } from '../error/locatedError' ;
@@ -58,7 +60,6 @@ import {
5860 collectSubfields as _collectSubfields ,
5961} from './collectFields' ;
6062import { getArgumentValues , getVariableValues } from './values' ;
61- import { GraphQLErrorBehavior , isErrorBehavior } from '../error/ErrorBehavior' ;
6263
6364/**
6465 * A memoized collection of relevant subfields with regard to the return
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ import { isPromise } from './jsutils/isPromise';
33import type { Maybe } from './jsutils/Maybe' ;
44import type { PromiseOrValue } from './jsutils/PromiseOrValue' ;
55
6+ import type { GraphQLErrorBehavior } from './error/ErrorBehavior' ;
7+
68import { parse } from './language/parser' ;
79import type { Source } from './language/source' ;
810
@@ -17,7 +19,6 @@ import { validate } from './validation/validate';
1719
1820import type { ExecutionResult } from './execution/execute' ;
1921import { execute } from './execution/execute' ;
20- import type { GraphQLErrorBehavior } from './error/ErrorBehavior' ;
2122
2223/**
2324 * This is the primary entry point function for fulfilling GraphQL operations
You can’t perform that action at this time.
0 commit comments