简体   繁体   中英

Exclude term in elasticsearch_dsl filter query

What is the dsl query syntax to exclude a term from a filter query? In this example below, how would i modify the query to include everything in field except "yes"?

s = s.filter('terms', field=['yes'])

你可以做:

s = s.exclude('terms', field=['yes'])

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM