mongodb shell query last document
db.collection.find().limit(1).sort({$natural:-1})
mongodb shell query last document
db.collection.find().limit(1).sort({$natural:-1})
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}})
get the latest field in mongodb collection
> db.collection.findOne().sort({'_id':-1}).limit(1)
It work perfectly !
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us