We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4df3db1 commit a2c2520Copy full SHA for a2c2520
1 file changed
src/execution/execute.ts
@@ -445,10 +445,10 @@ function executeFieldsSerially(
445
parentType: GraphQLObjectType,
446
sourceValue: unknown,
447
path: Path | undefined,
448
- fields: GroupedFieldSet,
+ groupedFieldSet: GroupedFieldSet,
449
): PromiseOrValue<ObjMap<unknown>> {
450
return promiseReduce(
451
- fields,
+ groupedFieldSet,
452
(results, [responseName, fieldGroup]) => {
453
const fieldPath = addPath(path, responseName, parentType.name);
454
const result = executeField(
0 commit comments