Carl
03/25/2022, 10:06 AMfilters
property for <Configure>
also work (docs) for Typesense? I have tried setting it but nothing seems to make it to the network call to Typesense.
I have used facetFilters
previously which works great, though we can't set that and use a RefinementList at the same time. I was hoping using the filters
property would somehow combine the values for us properly as described in this issue.Jason Bosco
03/25/2022, 10:26 AMJason Bosco
03/25/2022, 10:27 AMJason Bosco
03/25/2022, 10:27 AMJason Bosco
03/25/2022, 10:28 AMCarl
03/25/2022, 10:34 AMJason Bosco
03/25/2022, 10:35 AMCarl
03/25/2022, 10:37 AMJason Bosco
03/25/2022, 4:19 PMtry base64 decode the key and try modify the filter that wayThat wouldn't work unfortunately. It's meant to not be decodable for ACL purposes.
Jason Bosco
03/25/2022, 4:20 PMCarl
03/28/2022, 6:26 AM<Configure>
not combining with the refinements.
Hope that makes senseCarl
03/28/2022, 6:30 AMCarl
03/31/2022, 5:47 AMJason Bosco
03/31/2022, 3:51 PMthen filter on "product_number:<query_number>".Does this not filter down to a single record? Sounds like there are multiple records with the same product number?
Jason Bosco
03/31/2022, 3:53 PM{
"rule": {
"query": "{product_number}",
"match": "contains"
},
"filter_by": "product_number:={product_number}",
"remove_matched_tokens": true
}
Carl
04/01/2022, 7:37 AMfilter_by
and be removed from the query? Assumiing remove_matched_tokens
is true
of course.Jason Bosco
04/01/2022, 4:11 PMWould it work if there's 10 different product numbers? How about if there's a mix of different numbers?Yup, you also want to create different rules for each field, like you mentioned
Carl
04/04/2022, 6:26 AM