https://elasticsearch.cn/question/4305
URL地址:http://192.168.2.143:9200/poems/poem/_search/
方法:POST
{
"query": {
"bool": {
"must": [
{
"match_all": {}
}
],
"must_not": [],
"should": [
{
"match": {
"author": "李白"
}
}
],
"filter": [
{
"match": {
"title": "白帝城"
}
},
{
"range": {
"cat_id": {
"gte": 1,
"lte": 2
}
}
}
]
}
},
"from": 0,
"size": 10,
"sort": [],
"aggs": {}
}
demo
{
"query": {
"bool": {
"filter": [
{
"term": {
"name": "kevin"
}
},
{
"range": {
"age": {
"gte": 20,
"lte": 30
}
}
}
]
}
}
}