We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e161e6 commit ee398c9Copy full SHA for ee398c9
1 file changed
src/execution/execute.ts
@@ -406,10 +406,10 @@ function executeFieldsSerially(
406
parentType: GraphQLObjectType,
407
sourceValue: unknown,
408
path: Path | undefined,
409
- fields: GroupedFieldSet,
+ groupedFieldSet: GroupedFieldSet,
410
): PromiseOrValue<ObjMap<unknown>> {
411
return promiseReduce(
412
- fields,
+ groupedFieldSet,
413
(results, [responseName, fieldGroup]) => {
414
const fieldPath = addPath(path, responseName, parentType.name);
415
const result = executeField(
0 commit comments