Skip to content

Instantly share code, notes, and snippets.

@bds
Last active January 2, 2016 20:49
Show Gist options
  • Save bds/8359654 to your computer and use it in GitHub Desktop.
Save bds/8359654 to your computer and use it in GitHub Desktop.
Mongo console commands
show dbs
use my_db
show collections
db.printCollectionStats()
db.things.find( {}, { _id:1 } ) # All documents ids
db.things.find ( { _id: ObjectId("daf3424234dsf12334f") } ).count()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment