次のようなネストされた Mongo コレクションがあります。
{
"_id": "BaiD76JR3gZFPKchn",
"ownerAdmin": "NsgdNHh84XrBJALAK",
"activities": [
{
"id": "a1",
"email": "itsarmin@gmail.com",
"type": "image",
"description": "Another one",
"createdAt": "2017-10-25T21:39:44.769Z",
"pins":
"action": "https://www.dropbox.com/as"
},
{
"id": "a2",
"email": "itsarmin@gmail.com",
"type": "image",
"description": "Comment This image For me",
"createdAt": "2017-10-25T18:42:00.484Z",
"action": "https://www.dropbox.com/s/bty2ds"
},
{
"id": "a3"
"email": "armin@four1five.com",
"type": "progress",
"description": "dasd",
"createdAt": "2017-10-24T17:28:11.748Z",
"action": 50
}
],
"createdAt": "2017-10-24T17:27:54.828Z"
}
を使用してクエリを実行しCollection.findOne("BaiD76JR3gZFPKchn",)
、2 つのフィールド「id:a2」と「type:image」を使用して「アクティビティ」でオブジェクトを返すようにしようとしているので、最終的には次のようになります。
{
"id": "a2",
"email": "itsarmin@gmail.com",
"type": "image",
"description": "Comment This image For me",
"createdAt": "2017-10-25T18:42:00.484Z",
"action": "https://www.dropbox.com/s/bty2ds"
}