Skip to content

Commit

Permalink
fix(graphql-core): DomainEntitiesResolver does not support values Fac…
Browse files Browse the repository at this point in the history
…etFilterInput parameter (#10188)

Co-authored-by: si-chakraborty <[email protected]>
Co-authored-by: Chris Collins <[email protected]>
  • Loading branch information
3 people authored Apr 5, 2024
1 parent 294b6d4 commit 3d6d4f4
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,7 @@ public CompletableFuture<SearchResults> get(final DataFetchingEnvironment enviro
.getFilters()
.forEach(
filter -> {
criteria.add(
new Criterion()
.setField(filter.getField())
.setValue(filter.getValue()));
criteria.add(criterionFromFilter(filter, true));
});
}

Expand Down

0 comments on commit 3d6d4f4

Please sign in to comment.