Skip to content

Instantly share code, notes, and snippets.

@kevcodez
Created October 7, 2022 14:49
Show Gist options
  • Save kevcodez/9bf4222578b70d556a9f8b641dc7e5b4 to your computer and use it in GitHub Desktop.
Save kevcodez/9bf4222578b70d556a9f8b641dc7e5b4 to your computer and use it in GitHub Desktop.
medium_mongodb_performance_merge
db.holdings.aggregate([
{
$group: {
_id: '$portfolio',
assetIdentifiers: {
$addToSet: '$asset.identifier',
},
},
},
{
$merge: {
into: 'portfolio_assets',
whenMatched: 'replace',
},
},
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment