Skip to content

Commit 152e966

Browse files
committed
rename execute.ts
1 parent 76c0e90 commit 152e966

20 files changed

+21
-21
lines changed

src/execution/__tests__/abstract-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { GraphQLSchema } from '../../type/schema.js';
1717

1818
import { buildSchema } from '../../utilities/buildASTSchema.js';
1919

20-
import { execute, executeSync } from '../execute.js';
20+
import { execute, executeSync } from '../Executor.js';
2121

2222
interface Context {
2323
async: boolean;

src/execution/__tests__/cancellation-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
execute,
1717
experimentalExecuteIncrementally,
1818
subscribe,
19-
} from '../execute.js';
19+
} from '../Executor.js';
2020
import type {
2121
InitialIncrementalExecutionResult,
2222
SubsequentIncrementalExecutionResult,

src/execution/__tests__/defer-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
import { GraphQLID, GraphQLString } from '../../type/scalars.js';
1919
import { GraphQLSchema } from '../../type/schema.js';
2020

21-
import { execute, experimentalExecuteIncrementally } from '../execute.js';
21+
import { execute, experimentalExecuteIncrementally } from '../Executor.js';
2222
import type {
2323
InitialIncrementalExecutionResult,
2424
SubsequentIncrementalExecutionResult,

src/execution/__tests__/directives-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { GraphQLObjectType } from '../../type/definition.js';
77
import { GraphQLString } from '../../type/scalars.js';
88
import { GraphQLSchema } from '../../type/schema.js';
99

10-
import { executeSync } from '../execute.js';
10+
import { executeSync } from '../Executor.js';
1111

1212
const schema = new GraphQLSchema({
1313
query: new GraphQLObjectType({

src/execution/__tests__/executor-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {
2828
} from '../../type/scalars.js';
2929
import { GraphQLSchema } from '../../type/schema.js';
3030

31-
import { execute, executeSync } from '../execute.js';
31+
import { execute, executeSync } from '../Executor.js';
3232

3333
describe('Execute: Handles basic execution tasks', () => {
3434
it('executes arbitrary code', async () => {

src/execution/__tests__/lists-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { GraphQLSchema } from '../../type/schema.js';
1818

1919
import { buildSchema } from '../../utilities/buildASTSchema.js';
2020

21-
import { execute, executeSync } from '../execute.js';
21+
import { execute, executeSync } from '../Executor.js';
2222
import type { ExecutionResult } from '../types.js';
2323

2424
describe('Execute: Accepts any iterable as list value', () => {

src/execution/__tests__/mutations-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
execute,
1515
executeSync,
1616
experimentalExecuteIncrementally,
17-
} from '../execute.js';
17+
} from '../Executor.js';
1818

1919
class NumberHolder {
2020
theNumber: number;

src/execution/__tests__/nonnull-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { GraphQLSchema } from '../../type/schema.js';
1414

1515
import { buildSchema } from '../../utilities/buildASTSchema.js';
1616

17-
import { execute, executeSync } from '../execute.js';
17+
import { execute, executeSync } from '../Executor.js';
1818
import type { ExecutionResult } from '../types.js';
1919

2020
const syncError = new Error('sync');

src/execution/__tests__/oneof-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { parse } from '../../language/parser.js';
66

77
import { buildSchema } from '../../utilities/buildASTSchema.js';
88

9-
import { execute } from '../execute.js';
9+
import { execute } from '../Executor.js';
1010
import type { ExecutionResult } from '../types.js';
1111

1212
const schema = buildSchema(`

0 commit comments

Comments
 (0)