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 c880fb5 commit 5e0b563Copy full SHA for 5e0b563
src/main/java/com/intuit/graphql/orchestrator/batch/DownStreamQueryOptimizer.java
@@ -54,7 +54,6 @@ private static GroupedSelectionSet groupSelections(List<Selection> selections) {
54
private SelectionSet transform(SelectionSet selections) {
55
final GroupedSelectionSet groupedSelectionSet = groupSelections(selections.getSelections());
56
if(groupedSelectionSet.getGroupedFields().size() > 0) {
57
- System.out.println("if");
58
SelectionSet.Builder mergedSelectionSetBuilder = SelectionSet.newSelectionSet();
59
groupedSelectionSet.getDistinctSelections().forEach(selection -> mergedSelectionSetBuilder.selection(selection));
60
groupedSelectionSet.getGroupedFields().values()
0 commit comments