hello,
I'm trying to make this work with no luck. should this syntax even work?
I am referring this git issue:
thanks!
GET client_data_228_d_2017-03-15,client_data_228_d_2017-03-16/prt/_search?ignore_unavailable
{
"size": 0,
"aggs": {
"groupby_country": {
"terms": {
"field": "country",
"size": 2000
},
"aggs": {
"should_we_consider": {
"bucket_selector": {
"buckets_path": {
"hits": "groupby_domain.**_bucket_count**"
},
"script": "_bucket_count.hits>0"
}
},
"groupby_domain": {
"terms": {
"field": "domain",
"size": 2000
},
"aggs": {
"groupby_page": {
"terms": {
"field": "page",
"size": 2000,
"min_doc_count": 2
}
}
}
}
}
}
}
}