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 1564174 commit ebb735eCopy full SHA for ebb735e
src/execution/execute.ts
@@ -1678,16 +1678,15 @@ async function* ensureAsyncIterable(
1678
function mapSourceToResponse(
1679
exeContext: ExecutionContext,
1680
resultOrStream: ExecutionResult | AsyncIterable<unknown>,
1681
-): PromiseOrValue<
+):
1682
| AsyncGenerator<
1683
| ExecutionResult
1684
| InitialIncrementalExecutionResult
1685
| SubsequentIncrementalExecutionResult,
1686
void,
1687
void
1688
>
1689
- | ExecutionResult
1690
-> {
+ | ExecutionResult {
1691
if (!isAsyncIterable(resultOrStream)) {
1692
return resultOrStream;
1693
}
0 commit comments