Ngày từ mongo luôn tính theo GMT và máy chủ của bạn có thể ở múi giờ khác. Bạn cần chuyển đổi ngày sang GMT trước khi định dạng.
var moment = require("moment-timezone")
AuthorSchema.virtual('date_of_birth_update_format').get(function(){
return this.date_of_birth ? moment(this.date_of_birth).tz('GMT').format('YYYY-MM-DD') : '';
});