试试这个
{ "query": { "filtered": { "query": { "match_all": {} }, "filter": { "bool": { "must": [ { "range": { "date": { "from": "2015-06-01", "to": "2015-06-30" } } }, { "bool": { "should": [ { "missing": {"field": "groups" } }, { "bool": {"must": { "term": { "groups.sex": "w" }},"should": { "terms": {"groups.categories.id": [7,10]}} } } ] } } ], "must_not": { "term": { "e.state": 0 } } } } } }}


