I need to be able to push new objects to fameTotals
. Having a bit of trouble, thanks!
This is what the document would look like in my database:
{
clanName: null,
clanTag: null,
players: [
{
name: null,
tag: null,
fameTotals: [ //PUSH TO THIS ARRAY
{fame: 0, clanTrophies: 0, date: ''}
]
}
]
}
I've been trying to figure it out with updateOne()
and the $push
operator.