GET /es_user/_search { "query": { "bool": { "must" : [{ "term" : { "address" : "nanjing" } }, { "match": { "post_date": "2021-04-19T08:12:51.179Z" } }], "filter": { "term" : { "gender" : "male" } }, "must_not" : { "range" : { "age" : { "from" : 10, "to" : 21 } } }, "should" : [ { "term" : { "height" : 181 } }, { "term" : { "user_name" : "snake1" } } ] } } }