-
$unwind
giải cấu trúc mảng vòng -
$project
để hiển thị các trường bắt buộc
db.collection.aggregate([
{ $unwind: "$rounds" },
{
$project: {
GameID: 1,
ComputerName: 1,
max_player_pot: "$rounds.round_values.max_player_pot",
pot_multiple: "$rounds.round_values.pot_multiple"
}
}
])
Một cách tiếp cận năng động hơn,
-
$mergeObjects
để hợp nhất các trường bắt buộc từ thư mục gốc vàround_values
đối tượng -
$replaceRoot
để thay thế đối tượng đã hợp nhất ở trên thành root
db.collection.aggregate([
{ $unwind: "$rounds" },
{
$replaceRoot: {
newRoot: {
$mergeObjects: [
{
GameID: "$GameID",
ComputerName: "$ComputerName"
},
"$rounds.round_values"
]
}
}
}
])