Reputation: 66565
In the Elasticsearch documents, there is a field createdAt defined as follows:
"createdAt" : {
"type" : "date",
"format" : "YYYY-MM-DD HH:mm:ss"
}
When trying to sort the records by date, I get the following order:
Does anyone know why the dates are not sorted correctly?
Upvotes: 2
Views: 319
Reputation: 217304
Your format is wrong, it should be:
"createdAt" : {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss"
}
Lowercase y
and d
Upvotes: 4