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 534e7f5 commit 26b873aCopy full SHA for 26b873a
src/execution/collectFields.ts
@@ -167,11 +167,11 @@ function buildSelectionSetVisitor(
167
) => void {
168
const visitedFragmentNames = new Set<string>();
169
170
- const selectionSetVisitor = (
+ function selectionSetVisitor(
171
selectionSet: SelectionSetNode,
172
deferUsage?: DeferUsage,
173
fragmentVariableValues?: VariableValues,
174
- ): void => {
+ ): void {
175
for (const selection of selectionSet.selections) {
176
switch (selection.kind) {
177
case Kind.FIELD: {
@@ -340,7 +340,7 @@ function buildSelectionSetVisitor(
340
}
341
return true;
342
343
- };
+ }
344
345
/**
346
* Determines if a fragment is applicable to the given type.
0 commit comments