- Toto je typický vztah jeden k mnoha. Takže v případě Uživatele můžete mít následující schéma:
//User
{
//_id: ObjectId - this one is unique and inserted to every document by default
profile: String,
...
}
//Activity
{
description: String,
...,
userId: String, // referecing the user _id, e.g. "56a5eccb2258799919dc2c40"
}
- Pokud chcete aktualizovat mnoho dokumentů pro aktivitu:
db.activities.update({ userId: '56a5eccb2258799919dc2c40' }, {
$set: {
description: 'new description'
}
},
{
multi: true //means update all matching docs
});