summaryrefslogtreecommitdiffstats
path: root/tests/files/search/GET_search_agg_composite_missing.txt
blob: c46e19067f07c8214344c72be5c91d051f9191b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
GET /some-index/_search
{
  "size": 0,
  "aggs": {
    "my_buckets": {
      "composite": {
        "sources": [
          { "product_name": { "terms": { "field": "product", "missing_bucket": true } } }
        ]
      }
    }
  }
}