hi friends how get last document of collection f...
# orm-help
h
hi friends how get last document of collection from mongoose
a
Hey there. You could do a sort on the date by descending order while finding just one #JustAThought
👍 1
h
like this PollModel.find().sort({date :-1}).exec()
a
Yea. If your date is stored as
date
that is Though, I believe the method you need is
findOne()
Copy code
PollModel.findOne().sort({date :-1}).exec()
💯 1
h
💯