Hi team,
Our team is using Elastic search UI functions including Elastic Search connector (setup like this Elasticsearch Connector | Documentation) and SearchDriver (set up like this Configuration | Documentation)
On top of search query term, the user can also add filters to filter the search results even more.
The "filters" field in searchQuery (within the SearchDriver) only matches the exact value provided instead of a "contains".
We tried the following on the Elasticsearch console and it works great!
GET /my_index/_search
{
"query": {
"bool": {
"should": [
{
"match": {
"title": "tutorial"
}
},
{
"match": {
"title": "install"
}
}
]
}
}
}
how can we replicate this exact behavior using searchDriver? Is it possible or is there another field we could use?
Thanks!!