File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import type {
1616} from '../type/index.js' ;
1717
1818import type { FieldDetailsList } from './collectFields.js' ;
19- import type { ValidatedExecutionArgs } from './execute .js' ;
19+ import type { ValidatedExecutionArgs } from './Executor .js' ;
2020import type { VariableValues } from './values.js' ;
2121
2222/** @internal */
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { parse } from '../../language/parser.js';
99import { buildSchema } from '../../utilities/buildASTSchema.js' ;
1010
1111import { execute } from '../entrypoints.js' ;
12- import type { ExecutionResult } from '../execute .js' ;
12+ import type { ExecutionResult } from '../Executor .js' ;
1313
1414const syncError = new Error ( 'bar' ) ;
1515
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import { GraphQLSchema } from '../../type/schema.js';
1919import { buildSchema } from '../../utilities/buildASTSchema.js' ;
2020
2121import { execute , executeSync } from '../entrypoints.js' ;
22- import type { ExecutionResult } from '../execute .js' ;
22+ import type { ExecutionResult } from '../Executor .js' ;
2323
2424describe ( 'Execute: Accepts any iterable as list value' , ( ) => {
2525 function complete ( rootValue : unknown ) {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { GraphQLSchema } from '../../type/schema.js';
1717import { buildSchema } from '../../utilities/buildASTSchema.js' ;
1818
1919import { execute , executeSync } from '../entrypoints.js' ;
20- import type { ExecutionResult } from '../execute .js' ;
20+ import type { ExecutionResult } from '../Executor .js' ;
2121
2222const syncError = new Error ( 'sync' ) ;
2323const syncNonNullError = new Error ( 'syncNonNull' ) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { parse } from '../../language/parser.js';
77import { buildSchema } from '../../utilities/buildASTSchema.js' ;
88
99import { execute } from '../entrypoints.js' ;
10- import type { ExecutionResult } from '../execute .js' ;
10+ import type { ExecutionResult } from '../Executor .js' ;
1111
1212const schema = buildSchema ( `
1313 type Query {
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import {
2626 executeSubscriptionEvent ,
2727 subscribe ,
2828} from '../entrypoints.js' ;
29- import type { ExecutionResult } from '../execute .js' ;
29+ import type { ExecutionResult } from '../Executor .js' ;
3030
3131import { SimplePubSub } from './simplePubSub.js' ;
3232
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ import { assertValidSchema } from '../type/index.js';
2222import type { GraphQLSchema } from '../type/schema.js' ;
2323
2424import type { FragmentDetails } from './collectFields.js' ;
25- import type { ExecutionResult , ValidatedExecutionArgs } from './execute .js' ;
25+ import type { ExecutionResult , ValidatedExecutionArgs } from './Executor .js' ;
2626import {
2727 createSourceEventStreamImpl ,
2828 executeQueryOrMutationOrSubscriptionEvent ,
2929 mapSourceToResponse ,
30- } from './execute .js' ;
30+ } from './Executor .js' ;
3131import { getVariableSignature } from './getVariableSignature.js' ;
3232import { getVariableValues } from './values.js' ;
3333
Original file line number Diff line number Diff line change 11export { pathToArray as responsePathAsArray } from '../jsutils/Path.js' ;
22
3- export { executeQueryOrMutationOrSubscriptionEvent } from './execute .js' ;
3+ export { executeQueryOrMutationOrSubscriptionEvent } from './Executor .js' ;
44
55export {
66 createSourceEventStream ,
@@ -17,7 +17,7 @@ export type {
1717 ValidatedExecutionArgs ,
1818 ExecutionResult ,
1919 FormattedExecutionResult ,
20- } from './execute .js' ;
20+ } from './Executor .js' ;
2121
2222export {
2323 getArgumentValues ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { validateSchema } from './type/validate.js';
1515import { validate } from './validation/validate.js' ;
1616
1717import { execute } from './execution/entrypoints.js' ;
18- import type { ExecutionResult } from './execution/execute .js' ;
18+ import type { ExecutionResult } from './execution/Executor .js' ;
1919
2020/**
2121 * This is the primary entry point function for fulfilling GraphQL operations
You can’t perform that action at this time.
0 commit comments