Answers for "mongo get last n ellements shell"

4

mongodb shell query last document

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

pymongo get last item

# pymongo client

last_doc = collection.find().sort('_id', -1)[0]
Posted by: Guest on March-28-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language