Is there a way to figure out the fields/keys in a document while in mongo\'s shell? As an example, let\'s say we have a document like (pseudocode):
{ \"m
var task = db.task.find().next() for (let key in task){print(key)}