Elasticsearch 並或查詢 JSON

Vckin發表於2019-04-04

並或查詢

  • must 必須包含
  • nust_not必須不包含
  • should 可以為
    {
      "bool": {
          "must":     { "match": { "title": "how to make millions" }},
          "must_not": { "match": { "tag":   "spam" }},
          "should": [
              { "match": { "tag": "starred" }}
          ],
          "filter": {
            "bool": { 
                "must": [
                    { "range": { "date": { "gte": "2014-01-01" }}},
                    { "range": { "price": { "lte": 29.99 }}}
                ],
                "must_not": [
                    { "term": { "category": "ebooks" }}
                ]
            }
          }
      }
    }
    ###普通查詢
    "match" : {
      "last_name" : "Smith"
    }
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章