QSL match_phrase 嵌套查询

match_phrase 嵌套查询

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

猜你喜欢

转载自blog.csdn.net/weixin_36570189/article/details/82803180