I got multiple visualizations that filtered on same field and value, value=x.
{
"query": {
"bool": {
"should": [
{
"match_phrase": {
"value.keyword": "x"
}
}
],
"minimum_should_match": 1
}
}
}
From time to time I need to change that value, I want to avoid entering each visualization and changing it, is it possible to automate the process ?
Is it possible to change/ set filter value via query ?