Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions query-graphs-js/src/conditionsValidation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ConditionValidationState {
) {}

advance(supergraph: Schema): ConditionValidationState[] | null {
let newOptions: SimultaneousPathsWithLazyIndirectPaths[] = [];
const newOptions: SimultaneousPathsWithLazyIndirectPaths[] = [];
for (const paths of this.subgraphOptions) {
const pathsOptions = advanceSimultaneousPathsWithOperation(
supergraph,
Expand All @@ -40,7 +40,7 @@ class ConditionValidationState {
if (!pathsOptions) {
continue;
}
newOptions = newOptions.concat(pathsOptions);
newOptions.push(...pathsOptions);
}

// If we got no options, it means that particular selection of the conditions cannot be satisfied, so the
Expand Down