Skip to content

Commit

Permalink
split Executor class into separate file
Browse files Browse the repository at this point in the history
note that the Parser class is contained in lowercase parser.ts
  • Loading branch information
yaacovCR committed Jun 17, 2021
1 parent 913b16f commit 8fe9d33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/execution/__tests__/executor-test.ts
Expand Up @@ -18,6 +18,7 @@ import {
GraphQLUnionType,
} from '../../type/definition';

import { Executor } from '../executor';
import { execute, executeSync } from '../execute';

describe('Execute: Handles basic execution tasks', () => {
Expand Down
1 change: 1 addition & 0 deletions src/graphql.ts
Expand Up @@ -14,6 +14,7 @@ import type {
import type { GraphQLSchema } from './type/schema';
import { validateSchema } from './type/validate';

import type { Executor } from './execution/executor';
import type { ExecutionResult } from './execution/execute';
import { execute } from './execution/execute';

Expand Down

0 comments on commit 8fe9d33

Please sign in to comment.