$project
を追加できます user
からのフィールドを制限するステージ $lookup
の後の配列
db.collection('bugs').aggregate([{
$project: {
"user.title": 1,
"user.firstname": 1,
"user.lastname": 1
}
}]);
$project
を追加できます user
からのフィールドを制限するステージ $lookup
の後の配列
db.collection('bugs').aggregate([{
$project: {
"user.title": 1,
"user.firstname": 1,
"user.lastname": 1
}
}]);