ES聚合后查询操作 version 7.9.3
https://blog.csdn.net/laoyang360/article/details/119723069
POST my-products/_search
{
"query": {
"bool": {
"must": [
{
"match_phrase": {
"brand": {
"query": "lining"
}
}
}
]
}
},
"from": 0,
"size": 10,
"aggs": {
"brand_terms": {
"terms": {
"field": "brand",
"size": 10
}
}
}
}