<@U01PL2YSG8L> no, no need to return, we need to j...
# community-help
c
@Kishore Nallan no, no need to return, we need to just return the documents that reached a score greater than the threshold based on the fields in filter_by e.g
filter_by: sector:=[1,2,3],country_ids=[1,2,3]
Document A
has
sector 2 (50pts)
and
country 3 (50pts)
=
100pts
Document B
has
sector (0pts
does not matched in filter_by and
country 2 (50pts)
=
50pts
Then from those documents, we want to filter only those that have
above 50pts
, so request should only return
Document A