1. 程式人生 > >QSL match_phrase 巢狀查詢

QSL match_phrase 巢狀查詢

match_phrase 巢狀查詢

{
  "query": {
    "bool": {
      "should": [
        {
          "match_phrase": {
            "body": {
              "query": " 'type':'pull'"
            }
          }
        },
        {
          "match_phrase": {
            "body": {
              "query": " 'type':'play'"
            }
          }
        }
      ]
    }
  }
}