mrsarm / mongotail

Command line tool to log all MongoDB queries in a "tail"able way
https://pypi.org/project/mongotail/
GNU General Public License v3.0
192 stars 17 forks source link

Add support to cursor pagination arguments #31

Closed mrsarm closed 4 years ago

mrsarm commented 4 years ago

Eg.:

db.getCollection('users').find({"username": "admin"}).limit(5).skip(10)

Got:

2020-04-07 19:19:34.485 QUERY   [users] : {"username": "admin"}, limit: 5, skip: 10. 1 returned.