<@U01PL2YSG8L> another one after completing our in...
# community-help
m
@Kishore Nallan another one after completing our internal testing 😅. It seems that basic filtering occasionally doesn’t work on stemmed fields. We’re testing this on the latest RC14. Pls find examples in thethread:
Collection:
Copy code
"name": "products",
"fields": [
 {"name": "name", "type": "string" },
 {"name": "brand", "type": "string", "stem": true }
Documents:
Copy code
{"id": "1","name": "Dress","brand": "Adidas"}
{"id": "2","name": "Jeans","brand": "The North Face"}
this query returns no results
Copy code
{
  "collection": "products",
  "q": "*",
  "filter_by": "brand:=[`The North Face`]",
  "limit": 0
}
Copy code
"found": 0,
"out_of": 2,
However, filtering by `"brand:=[
Adidas
]"` returns 1 result as expected. With stemming disable
stem: false
, the original query (filter by ‘The North Face’) also returns the expected result.
k
This is a bug probably because we are not applying stemming during filter processing. Can you please create a Github issue so we can prioritize and pick it up?
👌 1
m
👍 1