サブオブジェクトを介してアイテムを見つけるモンゴ
{ "_id" : ObjectId("4f93aaddaca610f76b000000"),
"count" : NumberLong(2),
"items" : [
{"count" : NumberLong(1),
"options":{ "1":"track","2" : "track" } },
{"count":NumberLong(2),
"options":{"1":"as","2" : "sadf" } }
]
}
リクエストごとにアイテムリストを制限するなど、サブオブジェクト内のものを並べ替える方法
私が期待する結果はこれです
{ "_id" : ObjectId("4f93aaddaca610f76b000000"),
"count" : NumberLong(2),
"items" : [
{"count" : NumberLong(1),
"options":{ "1":"track","2" : "track" } },
]
}