UNPKG

@graphql-tools/executor-http

Version:

A set of utils for faster development of GraphQL tools

9 lines (8 loc) 259 B
import { withCancel } from '@graphql-tools/utils'; export function addCancelToResponseStream(resultStream, controller) { return withCancel(resultStream, () => { if (!controller.signal.aborted) { controller.abort(); } }); }