debe existir la búsqueda elástica
GET /_search
{
"query": {
"bool": {
"must_not": {
"exists": {
"field": "user.id"
}
}
}
}
}
Enthusiastic Elephant