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 f917255 commit 8ffb37fCopy full SHA for 8ffb37f
src/execution/execute.ts
@@ -2144,17 +2144,15 @@ function firstAsyncStreamItems(
2144
): StreamItemsRecord {
2145
const firstStreamItems: StreamItemsRecord = {
2146
streamRecord,
2147
- result: Promise.resolve().then(() =>
2148
- getNextAsyncStreamItemsResult(
2149
- streamRecord,
2150
- path,
2151
- initialIndex,
2152
- asyncIterator,
2153
- exeContext,
2154
- fieldGroup,
2155
- info,
2156
- itemType,
2157
- ),
+ result: getNextAsyncStreamItemsResult(
+ streamRecord,
+ path,
+ initialIndex,
+ asyncIterator,
+ exeContext,
+ fieldGroup,
+ info,
+ itemType,
2158
),
2159
};
2160
return firstStreamItems;
0 commit comments