Q:

exists query elasticsearch 5.4

GET /_search
{
    "query": {
        "exists": {
            "field": "user"
        }
    }
}
1
GET /_search
{
    "query": {
        "bool": {
            "must_not": {
                "exists": {
                    "field": "user"
                }
            }
        }
    }
}
0

New to Communities?

Join the community