我有一个如下查询,
query = {
"query": {"query_string": {"query": "%s" % q}},
"filter":{"ids":{"values":list(ids)}},
"facets": {"destination": {
"terms": {"field": "destination.en"}},
"hotel_class":{
"terms":{"field":"hotel_class"}},
"hotel_type":{
"terms":{"field": "hotel_type"}},
}}
但是由于我的 ids 过滤器,我的方面没有被过滤。我得到了所有方面,但我希望它们被我上面的 ids 过滤器过滤。你有什么想法 ?