Skip to content

Commit 6c40a31

Browse files
committed
prettier
1 parent 7a4acfa commit 6c40a31

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/execution/execute.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2040,7 +2040,11 @@ async function executeStreamIteratorItem(
20402040
if (isPromise(completedItem)) {
20412041
completedItem = catchAfter(completedItem, (rawError) => {
20422042
const error = locatedError(rawError, fieldNodes, pathToArray(itemPath));
2043-
const handledError = handleFieldError(error, itemType, asyncPayloadRecord.errors);
2043+
const handledError = handleFieldError(
2044+
error,
2045+
itemType,
2046+
asyncPayloadRecord.errors,
2047+
);
20442048
filterSubsequentPayloads(exeContext, itemPath, asyncPayloadRecord);
20452049
return handledError;
20462050
});

0 commit comments

Comments
 (0)