ES查询ID在某个区间内

GET /hospital_product_eso/_search
{
  "query": {
    "bool": {
      "must": { "match_all": {} },
      "filter": {
        "range": {
          "id": {
            "gte": 90000,
            "lte": 30000
          }
        }
      }
    }
  }
}

你可能感兴趣的:(ES查询ID在某个区间内)