Max Priazhevskii
10/31/2024, 8:01 AMMax Priazhevskii
10/31/2024, 8:02 AM"name": "products",
"fields": [
{"name": "name", "type": "string" },
{"name": "brand", "type": "string", "stem": true }
Documents:
{"id": "1","name": "Dress","brand": "Adidas"}
{"id": "2","name": "Jeans","brand": "The North Face"}
Max Priazhevskii
10/31/2024, 8:08 AM{
"collection": "products",
"q": "*",
"filter_by": "brand:=[`The North Face`]",
"limit": 0
}
"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.Kishore Nallan
11/01/2024, 3:22 AMMax Priazhevskii
11/01/2024, 8:01 AM