aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files/GET_search_querystring.txt
blob: 1c6e31ebc29b0f29cb20acecd7d02ab0c139c5f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
GET /some-index/_search
{
  "query": {
    "query_string": {
      "fields": [
        "title",
        "content"
      ],
      "query": "this OR that OR thus",
      "type": "cross_fields",
      "minimum_should_match": 2
    }
  }
}