这样的事情怎么样:
{ "query": { "match_all": {} }, "filter": { "bool": { "must": [ { "term": { "city": "New york" } }, { "term": { "state": "NY" } }, { "bool": { "should": [ { "bool": { "must": [ {"term": { "businessName": "Java"} }, {"term": { "businessName": "Shop"} } ] } }, { "bool": { "must": [ {"term": { "category": "Java"} }, {"term": { "category": "Shop"} } ] } } ] } } ] } }}


