Skip to content

Instantly share code, notes, and snippets.

@basedalexander
Created November 1, 2018 21:25
Show Gist options
  • Select an option

  • Save basedalexander/a0d37ff72cbf5d4aa30a4126052290e8 to your computer and use it in GitHub Desktop.

Select an option

Save basedalexander/a0d37ff72cbf5d4aa30a4126052290e8 to your computer and use it in GitHub Desktop.
// Get sum of a certain field across all the documents in a collection
db.getCollection('simple-arb').aggregate([
{
$match: {
closed: {
$eq: true
}
}
}, {
$group: {
_id: null,
total: {
$sum: "$actualProfit"
}
}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment