db.collection.find().sort( { age: -1 } )
db.collection.find({}, { name: true, _id: false } )
db.collection.find({ count: { $gt: 10 } })
db.collection.find({ count: { $lte: 10 } })
db.collection.find({ type: { $exists: true } })
db.collection.find({ name: { $regex: '^U' } })
db.collection.update({ name: 'Something'}, { $set : { operator: 'Starfleet', class: 'Prometheus' } })
db.collection.insert({ name: 'card', age: 21 })