'filter' Clause
{
"query": {
"bool": {
"must":
{ "term": { "Bird": "Asian Koel" } }
,
"filter": [
{ "term": { "Country": "India" } },
{ "term": { "Color": "Black" } }
]
}
}
}Last updated
{
"query": {
"bool": {
"must":
{ "term": { "Bird": "Asian Koel" } }
,
"filter": [
{ "term": { "Country": "India" } },
{ "term": { "Color": "Black" } }
]
}
}
}Last updated