1
我想寫一個查詢,它將返回每個月的第一個條目,但我無法找到任何可以幫助我的任何人。Elasticsearch Date Historam第一個文檔
我想下面的查詢,但在當月沒有在頭文件當月返回的文檔數量
{
"query" : {
"term" : { "id" : "1" }
},"size":0,
"aggs" : {
"sales_over_time" : {
"date_histogram" : {
"field" : "date",
"interval" : "month"
}
}
}
}