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 01c64ac commit 1f851b3Copy full SHA for 1f851b3
src/execution/execute.ts
@@ -264,11 +264,17 @@ function executeImpl(
264
return data.then(
265
(resolved) => {
266
exeContext.executionController.abort();
267
- return incrementalPublisher.buildDataResponse(initialResultRecord, resolved)
+ return incrementalPublisher.buildDataResponse(
268
+ initialResultRecord,
269
+ resolved,
270
+ );
271
},
272
(error) => {
273
- return incrementalPublisher.buildErrorResponse(initialResultRecord, error)
274
+ return incrementalPublisher.buildErrorResponse(
275
276
+ error,
277
278
279
);
280
}
0 commit comments