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
      }
    }
  }
}
posted @ 2022-08-25 15:36  正伯Pro  阅读(8)  评论(0)    收藏  举报  来源