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 88fa83c commit 5f58075Copy full SHA for 5f58075
src/execution/execute.ts
@@ -601,10 +601,10 @@ function executeFieldsSerially(
601
parentType: GraphQLObjectType,
602
sourceValue: unknown,
603
path: Path | undefined,
604
- fields: GroupedFieldSet,
+ groupedFieldSet: GroupedFieldSet,
605
): PromiseOrValue<ObjMap<unknown>> {
606
return promiseReduce(
607
- fields,
+ groupedFieldSet,
608
(results, [responseName, fieldGroup]) => {
609
const fieldPath = addPath(path, responseName, parentType.name);
610
const result = executeField(
0 commit comments