Getting doc_count as zero while aggregation query on index created with type LocalDate in jpa java. Format is "yyyy-mm-dd". Whatever I try looking here and there as help , doc_count is coming 0. Olease help
Below is query:
{
"aggs": {
"dateaggregationrange": {
"date_range": {
"field": "dateAggregation.keyword",
"ranges": [
{
"from": "2010-09-25",
"to": "2020-09-25"
}
]
}
}
}
}