Hi,
I have documents with fields "publish_date" and "writer_id". I'd like a date histogram of the first published article by each writer_id. Can I visualize this on Kibana?
{
"size" : 0,
"aggs": {
"first_post": {
"date_histogram": {
"field": "publish_date",
"interval": "week",
"format": "yyyy-MM-dd"
},
"aggs": {
"authors" : {
"terms": {"field": "writer_id"},
"aggs" : {
"min_date" : {"min": {"field": "publish_date"}}
}
}
}
}
}
}