Alternative for = QueryBuilders missingFilter in elasticsearch JAVA API 5.5.0

Hello,
I need some help.

what is the alternative way for QueryBuilders.missingFilter() in new version of the elasticsearch API.

cordially,

Do a

bool
must_not
exists

combination.

Use an exists filter inside a must_not boolean clause.