Comment voir un document Mongo dans un joli mode

//To see a random document from collection in a pretty way:
db.collection.finOne({})

//To see filter results in a pretty way:
db.collection.find({filter}).pretty()
Upvote answer :-)