Hello Vadim,
you don’t need to use the expert search. Especially, if you want the search to be exact. The expert search is a full text search, it’s the reason, why you get ‘Mobiltelefone gebraucht’ as a result for searching for ‘Mobiltelefone’.
For these cases we recommend to use our standard search. Your query could look like this one:
{
"filters": {
"quote.ungueltig": {
"o": "eq",
"v1": false
},
"quote.produkt": {
"o": "in",
"v1": [
"Mobiltelefone",
"Smartwatches"
]
},
"quote.bis": {
"o": "gte",
"v1": "2021-12-31"
},
"quote.von": {
"o": "lte",
"v1": "2021-03-25"
}
},
"types": [
"quote"
],
"fields": [
"quote.herkunft",
"quote.jahr",
"quote.produkt",
"quote.ungueltig",
"quote.marke",
"quote.anderemarken",
"quote.von",
"quote.bis",
"quote.quotenid",
"quote.quoteprozent"
],
"options": {
"tracktotalhits": true
}
}
The option ‘tracktotalhits’ makes the query more expensive. If the amount of hits is not important, you can remove the section ‘options’ for good.
Kinds regards
Irina