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 95604f6 commit 9475dc4Copy full SHA for 9475dc4
src/execution/execute.ts
@@ -444,13 +444,13 @@ function executeFields(
444
parentType: GraphQLObjectType,
445
sourceValue: unknown,
446
path: Path | undefined,
447
- fields: GroupedFieldSet,
+ groupedFieldSet: GroupedFieldSet,
448
): PromiseOrValue<ObjMap<unknown>> {
449
const results = Object.create(null);
450
let containsPromise = false;
451
452
try {
453
- for (const [responseName, fieldGroup] of fields) {
+ for (const [responseName, fieldGroup] of groupedFieldSet) {
454
const fieldPath = addPath(path, responseName, parentType.name);
455
const result = executeField(
456
exeContext,
0 commit comments