If I have a collection and put some data in it, just like
{
"_id" : ObjectId("xxxxxxxxxxxxxxxxxxxxx"),
"name" : "Tom",
"age" : 22,
"job":"engineer"
}
when I use Mysql ,I can use command 'desc table' to list all fields ,so when I switch to mongodb ,how can I list all field what I expected like '_id,name,age,job'