使用过滤查询:
{ "query": { "filtered": { "query": { "multi_match": { "query": "test", "fields": [ "winery", "name" ] } }, "filter": { "term": { "status": "1" } } } }}与Elasticsearch 5相同的查询:
{ "query": { "bool": { "must": { "multi_match": { "query": "test", "fields": [ "winery", "name" ] } }, "filter": { "term": { "status": "1" } } } }}


