We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3802ab1 commit d9a312dCopy full SHA for d9a312d
1 file changed
src/execution/execute.ts
@@ -483,13 +483,13 @@ function executeFields(
483
parentType: GraphQLObjectType,
484
sourceValue: unknown,
485
path: Path | undefined,
486
- fields: GroupedFieldSet,
+ groupedFieldSet: GroupedFieldSet,
487
): PromiseOrValue<ObjMap<unknown>> {
488
const results = Object.create(null);
489
let containsPromise = false;
490
491
try {
492
- for (const [responseName, fieldGroup] of fields) {
+ for (const [responseName, fieldGroup] of groupedFieldSet) {
493
const fieldPath = addPath(path, responseName, parentType.name);
494
const result = executeField(
495
exeContext,
0 commit comments