mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-04-08 08:18:53 +00:00
As a replacement use ExistsQueryBuilder inside a mustNot() clause. So instead of using `new ExistsQueryBuilder(name)` now use: `new BoolQueryBuilder().mustNot(new ExistsQueryBuilder(name))`. Closes #14112