I\'m trying to _search documents that has some specific value in the field.
_search
{ \"query\": { \"bool\": { \"must\": [ {\"f
Try using must_not with missing in your bool:
must_not
missing
bool
"must_not":{ "missing":{ "field":"advs.status", "existence":true, "null_value":true } }