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