Mongodb – Mongoose saves createdAt as Double not Date
I want mongoose to save createdAt field as Date object not Double. please help. this is my schema const allSchema = new mongoose.Schema({ any: {} }, { safe: false, strict: false, versionKey: false, bufferCommands: false, validateBeforeSave: false, timestamps: { createdAt:…