Answers for "find last record in mongodb"

2

mongodb shell query last document

db.collection.find().limit(1).sort({$natural:-1})
Posted by: Guest on May-12-2020
2

get the last N records in mongodb

In order to get last N records you can execute below query:

db.yourcollectionname.find({$query: {}, $orderby: {$natural : -1}}).limit(yournumber)
if you want only one last record:

db.yourcollectionname.findOne({$query: {}, $orderby: {$natural : -1}})
Posted by: Guest on July-19-2020

Code answers related to "find last record in mongodb"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language