Shadab Faisal
10/30/2023, 7:27 AMsearch_parameters = {
'q': 'work',
'query_by': 'store_name, tags', //store_name = string "" & tags = String []
'num_typos': 2,
'typo_tokens_threshold': 1,
}
Suppose I have fields like this on my doc:-
1. store_name
like Work Anniversary, Work Culture.
2. tags
on some stores as “work”
I want to show the store_name
to take the priority instead of the exact match (tags) in this case.
PS: I have tried query_by_weights but it’s not working how I want