📜  在 elasticsearch 中添加 where 子句 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:05.504000             🧑  作者: Mango

代码示例1
{
  "size": 100, //default 10
  "from": 0, //default 0
  "query":
   {
    "match_all": {}
   },
   "filter" : {
        "term" : { 
            "activated" : "true" 
        }
    }
}