ElasticSearch 搜索片段

  1. must&must_not
{
  "bool": {
    "must": [
      {
        "terms": {
          "userId": [
            447903135814651900,
            447802362057461760
          ]
        }
      },
      {
        "term": {
          "status": 3
        }
      }
    ],
    "must_not": [
      {
        "terms": {
          "packages_type": [
            0,
            5
          ]
        }
      }
    ]
  }
}

你可能感兴趣的:(ElasticSearch)