$unwind
деконструирайте кръговия масив$project
за показване на задължителните полета
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"
}
}
])
По-динамичен подход,
$mergeObjects
за обединяване на задължителни полета от root иround_values
обект$replaceRoot
за замяна на обединения по-горе обект с root
db.collection.aggregate([
{ $unwind: "$rounds" },
{
$replaceRoot: {
newRoot: {
$mergeObjects: [
{
GameID: "$GameID",
ComputerName: "$ComputerName"
},
"$rounds.round_values"
]
}
}
}
])