We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f47dee7 commit e4b51d3Copy full SHA for e4b51d3
src/execution/execute.ts
@@ -892,6 +892,9 @@ function completeValue(
892
result: unknown,
893
asyncPayloadRecord?: AsyncPayloadRecord,
894
): PromiseOrValue<unknown> {
895
+ // Ignoring test coverage for abortion check since Node 14 doesn't support AbortSignal
896
+ // and this condition is never true.
897
+ /* c8 ignore next 3 */
898
if (exeContext.abortion?.executionAbortSignal.aborted) {
899
throw new GraphQLError('Execution aborted.');
900
}
0 commit comments