Skip to content

Instantly share code, notes, and snippets.

@made-by-chris
Created February 3, 2022 19:38
Show Gist options
  • Save made-by-chris/2e865af4d8e0f6b81d32ed84a0273b10 to your computer and use it in GitHub Desktop.
Save made-by-chris/2e865af4d8e0f6b81d32ed84a0273b10 to your computer and use it in GitHub Desktop.
some fun aggregations
db.listingsAndReviews.aggregate([ { "$project": { "address": 1, "_id": 0 } }, { "$group": { "_id": "$address.country", "sum": { "$sum": 1 } } }])
db.listingsAndReviews.aggregate([ { "$project": { "address": 1, "_id": 0 } }, { "$group": { "_id": "$address.country", "sum": { "$sum": 5 } } },{ "$sort" : { "sum" : 1 } } ])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment