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 913b16f commit 8fe9d33Copy full SHA for 8fe9d33
src/execution/__tests__/executor-test.ts
@@ -18,6 +18,7 @@ import {
18
GraphQLUnionType,
19
} from '../../type/definition';
20
21
+import { Executor } from '../executor';
22
import { execute, executeSync } from '../execute';
23
24
describe('Execute: Handles basic execution tasks', () => {
src/graphql.ts
@@ -14,6 +14,7 @@ import type {
14
import type { GraphQLSchema } from './type/schema';
15
import { validateSchema } from './type/validate';
16
17
+import type { Executor } from './execution/executor';
import type { ExecutionResult } from './execution/execute';
import { execute } from './execution/execute';
0 commit comments