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 148699f commit 2e1d930Copy full SHA for 2e1d930
src/execution/execute.ts
@@ -886,6 +886,9 @@ function completeValue(
886
result: unknown,
887
asyncPayloadRecord?: AsyncPayloadRecord,
888
): PromiseOrValue<unknown> {
889
+ // Ignoring test coverage for abortion check since Node 14 doesn't support AbortSignal
890
+ // and this condition is never true.
891
+ /* c8 ignore next 3 */
892
if (exeContext.abortion?.executionAbortSignal.aborted) {
893
throw new GraphQLError('Execution aborted.');
894
}
0 commit comments