Hello,
I have the following search query that I can run from my kibana dev tools (ver 7.6.2):
GET _search
{
"query": {
"multi_match": {
"query": "my-product-name",
"fields": [
"a.productName",
"a.b.productName"
]
}
}
I wanted to use the query section as query DSL inside my filter of the dashboard, but for some reason it is not filtering anything.
What am I missing? Is the format of the query in the filters not the same?
Thanks!