Skip to content

Commit a1d2dbe

Browse files
committed
Lint
1 parent 95da88d commit a1d2dbe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/execution/execute.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import { promiseForObject } from '../jsutils/promiseForObject';
1313
import type { PromiseOrValue } from '../jsutils/PromiseOrValue';
1414
import { promiseReduce } from '../jsutils/promiseReduce';
1515

16+
import type { GraphQLErrorBehavior} from '../error/ErrorBehavior';
17+
import { isErrorBehavior } from '../error/ErrorBehavior';
1618
import type { GraphQLFormattedError } from '../error/GraphQLError';
1719
import { GraphQLError } from '../error/GraphQLError';
1820
import { locatedError } from '../error/locatedError';
@@ -58,7 +60,6 @@ import {
5860
collectSubfields as _collectSubfields,
5961
} from './collectFields';
6062
import { 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

src/graphql.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { isPromise } from './jsutils/isPromise';
33
import type { Maybe } from './jsutils/Maybe';
44
import type { PromiseOrValue } from './jsutils/PromiseOrValue';
55

6+
import type { GraphQLErrorBehavior } from './error/ErrorBehavior';
7+
68
import { parse } from './language/parser';
79
import type { Source } from './language/source';
810

@@ -17,7 +19,6 @@ import { validate } from './validation/validate';
1719

1820
import type { ExecutionResult } from './execution/execute';
1921
import { 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

0 commit comments

Comments
 (0)