Hi!
I would like to find a way to add "missing" parameter in multi_terms aggregations using java api client.
"multi_terms": {
"terms": [
{
"field": "workDate"
},
{
"field": "teamName.keyword",
"missing" : "0" <- this one
},
{
"field": "courierName.keyword"
}
],
"order": {
"_key": "asc"
},
"size" : 100
}
I think it should be in MultiTermLookup, but there is only a "field" field.
How can i acheive this?