Skip to content

Commit 8fe9d33

Browse files
committed
split Executor class into separate file
note that the Parser class is contained in lowercase parser.ts
1 parent 913b16f commit 8fe9d33

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/execution/__tests__/executor-test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {
1818
GraphQLUnionType,
1919
} from '../../type/definition';
2020

21+
import { Executor } from '../executor';
2122
import { execute, executeSync } from '../execute';
2223

2324
describe('Execute: Handles basic execution tasks', () => {

src/graphql.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import type {
1414
import type { GraphQLSchema } from './type/schema';
1515
import { validateSchema } from './type/validate';
1616

17+
import type { Executor } from './execution/executor';
1718
import type { ExecutionResult } from './execution/execute';
1819
import { execute } from './execution/execute';
1920

0 commit comments

Comments
 (0)