Answers for "get latest mongodb data"

1

get the latest field in mongodb collection

> db.collection.findOne().sort({'_id':-1}).limit(1)

It work perfectly !
Posted by: Guest on October-19-2020
0

get the latest field in mongodb collection

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

Code answers related to "get latest mongodb data"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language