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 (datahub-project#10188)

Co-authored-by: si-chakraborty <si.chakraborty@adevinta.com>
Co-authored-by: Chris Collins <chriscollins3456@gmail.com>
  • Loading branch information
3 people authored and sleeperdeep committed Jun 25, 2024
1 parent 8f785a3 commit b24cbc4
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 b24cbc4

Please sign in to comment.