must should 的使用
GET /http_index/type/_search { "query": { "bool": { "should": [ { "bool": { "must": [ { "term" : { "field1" : { "value" : 110, "boost" : 1.0 } } }, { "terms": {"field2": [ 100037, 100055, 100060 ] } } ] } }, { "bool": { "must": [ {"terms": {"field3": ["1001001"]}} ] } } ] } } }
{ "query": { "bool": { "must": { //or條件組裝 "bool" : { "should": [ { "match": { "about": "music" }}, { "match": { "about": "climb" }} ] } }, "must": { "match": { "first_nale": "John" } }, "must_not": { "match": {"last_name": "Smith" } } } }