How to get Today, Upcoming and Past Birthdays using MongoDB by passing days range like next 60 days Upcoming Birthdays or Past 60 days Birthdays etc.
We've saved user date of birth in the users collection with below json format.
"dob" : {
"year" : "2015",
"month" : "06",
"day" : "30"
},
"birthday" : ISODate("1975-08-26T18:30:00.000Z") // Correct date format
Basically my solution is here in the Right Answer but not clear how to use with my collection dataset.
Find whether someone got a birthday in the next 30 days with mongo
Thanks!