GET /school/_search
{
"query": {
"bool": {
"disable_coord": true,
"should": [
{
"bool": {
"must": [
{
"match": {
"name": {
"query": "USA"
}
}
}
]
}
},
{
"match": {
...
},
{
"match": {
...
}
}
]
}
}
}
I have one big should query, inside it there are some match queries, besides a small bool query that contains must. Although I disable the coord, it is still counted. How can I fix this?