There are several moving parts here:
filter, , - post post, . , , 0,90 , Elasticsearch 5.0.
, , , , , , .
nested , .
{
"term": {
"user_id": 1
}
}
:
{
"term": {
"participants.user_id": 1
}
}
.
, , status 8, .
size of 0 , . , .
( , , , , ):
{
"query": {
"filtered": {
"filter": {
"bool": {
"must" : {
"nested" : {
"path" : "participants",
"filter": {
"bool": {
"must": [
{
"term": {
"participants.user_id": 1
}
},
{
"term": {
"participants.archived": false
}
},
{
"term": {
"participants.has_unread": true
}
}
]
}
}
}
},
"must_not": {
"term": {
"status": 8
}
}
}
}
}
},
"aggs": {
"status": {
"terms": {
"field": "status",
"size": 0
}
}
}
}
. "must_not" . , , . , , .