您可以通过添加一个
bool/must_not过滤器来实现此目的,该过滤器包含一个
ids过滤器,该过滤器带有您不想显示的ID数组,如下所示:
{ "query": { "bool": { "must": [ ... <--- your other filters go here ], "must_not": [ { "ids": { "values": [ "id1", "id2" <--- add all the ids you DON'T want in here ] } } ] } }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)