Reputation: 35
I have an collections. Let's take one element from collection:
{
"messages" : {
"_id" : ObjectId("5503044be4b0e3d1aed29d15"),
"body" : "Hello YOU!",
"subject" : "sth"
}
}
and now the tricky part. How to get elements from collection without wrapper. Like below:
{
"_id" : ObjectId("5503044be4b0e3d1aed29d15"),
"body" : "Hello YOU!",
"subject" : "sth"
}
Upvotes: 0
Views: 84