We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cde306f commit 16bacd4Copy full SHA for 16bacd4
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