Skip to content

Commit cecb5c1

Browse files
committed
rename PromiseCanceller.ts file
1 parent e8469a1 commit cecb5c1

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

src/execution/IncrementalPublisher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { pathToArray } from '../jsutils/Path.js';
44

55
import type { GraphQLError } from '../error/GraphQLError.js';
66

7+
import type { PromiseCanceller } from './AbortSignalListener.js';
78
import { IncrementalGraph } from './IncrementalGraph.js';
8-
import type { PromiseCanceller } from './PromiseCanceller.js';
99
import type {
1010
CancellableStreamRecord,
1111
CompletedExecutionGroup,

src/execution/__tests__/AbortSignalListener-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, it } from 'mocha';
22

33
import { expectPromise } from '../../__testUtils__/expectPromise.js';
44

5-
import { PromiseCanceller } from '../PromiseCanceller.js';
5+
import { PromiseCanceller } from '../AbortSignalListener.js';
66

77
describe('PromiseCanceller', () => {
88
describe('cancellablePromise', () => {

src/execution/execute.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ import { GraphQLStreamDirective } from '../type/directives.js';
4848
import type { GraphQLSchema } from '../type/schema.js';
4949
import { assertValidSchema } from '../type/validate.js';
5050

51+
import { PromiseCanceller } from './AbortSignalListener.js';
5152
import type { DeferUsageSet, ExecutionPlan } from './buildExecutionPlan.js';
5253
import { buildExecutionPlan } from './buildExecutionPlan.js';
5354
import type {
@@ -63,7 +64,6 @@ import {
6364
import { getVariableSignature } from './getVariableSignature.js';
6465
import { buildIncrementalResponse } from './IncrementalPublisher.js';
6566
import { mapAsyncIterable } from './mapAsyncIterable.js';
66-
import { PromiseCanceller } from './PromiseCanceller.js';
6767
import type {
6868
CancellableStreamRecord,
6969
CompletedExecutionGroup,

0 commit comments

Comments
 (0)