The major issue is your model. You store your dates as a string rather than a date. And worst in a non ISO string format.
With your format you cannot sort or range query without parsing the string into its components.
You also deprive your self from the rich date API.
The only recommendation is to update your model and migrate your createdAt and updatedAt fields to real date data type.