File tree 2 files changed +4
-2
lines changed
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';
13
13
import type { PromiseOrValue } from '../jsutils/PromiseOrValue' ;
14
14
import { promiseReduce } from '../jsutils/promiseReduce' ;
15
15
16
+ import type { GraphQLErrorBehavior } from '../error/ErrorBehavior' ;
17
+ import { isErrorBehavior } from '../error/ErrorBehavior' ;
16
18
import type { GraphQLFormattedError } from '../error/GraphQLError' ;
17
19
import { GraphQLError } from '../error/GraphQLError' ;
18
20
import { locatedError } from '../error/locatedError' ;
@@ -58,7 +60,6 @@ import {
58
60
collectSubfields as _collectSubfields ,
59
61
} from './collectFields' ;
60
62
import { getArgumentValues , getVariableValues } from './values' ;
61
- import { GraphQLErrorBehavior , isErrorBehavior } from '../error/ErrorBehavior' ;
62
63
63
64
/**
64
65
* 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';
3
3
import type { Maybe } from './jsutils/Maybe' ;
4
4
import type { PromiseOrValue } from './jsutils/PromiseOrValue' ;
5
5
6
+ import type { GraphQLErrorBehavior } from './error/ErrorBehavior' ;
7
+
6
8
import { parse } from './language/parser' ;
7
9
import type { Source } from './language/source' ;
8
10
@@ -17,7 +19,6 @@ import { validate } from './validation/validate';
17
19
18
20
import type { ExecutionResult } from './execution/execute' ;
19
21
import { execute } from './execution/execute' ;
20
- import type { GraphQLErrorBehavior } from './error/ErrorBehavior' ;
21
22
22
23
/**
23
24
* This is the primary entry point function for fulfilling GraphQL operations
You can’t perform that action at this time.
0 commit comments