I have an aggregation that also has a filter and I am having trouble composing it with the .NET Nest Library:
{
"aggs": {
"positive_lat": {
"filter": {
"bool": {
"must_not": [
{
"term": {
"latitude": 0
}
}
]
}
},
"aggs" : {
"min_lat": {
"min": {
"field": "latitude"
}
}
}
}
}
}
How does one do something like that? Is it possible?