I\'m trying to _search documents that has some specific value in the field.
_search
{ \"query\": { \"bool\": { \"must\": [ {\"f
Or another way to do the same thing more efficiently is to use the exists filter:
exists
"exists" : { "field" : "advs.status" }
Both are valid, but this one is better :)