aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files/GET_search_bool.txt
blob: 3f402f98b5f3eb81a53581480d315e1cee672f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
GET /some-index/_search
{
  "query": {
    "bool": {
      "must": {
        "match_all": {}
      },
      "filter": {
        "term": {
          "status": "active"
        }
      }
    }
  }
}