Skip to content

Instantly share code, notes, and snippets.

@gharriso
Created February 15, 2018 00:23
Show Gist options
  • Save gharriso/21c925324386cfb5b821d1985554d6cb to your computer and use it in GitHub Desktop.
Save gharriso/21c925324386cfb5b821d1985554d6cb to your computer and use it in GitHub Desktop.
db.getCollection("embeddedOrders").aggregate([
{ $unwind: "$orders" },
{ $unwind: "$orders.lineItems" },
{ $project: { "lineitems": "$orders.lineItems" }},
{ $group:{ _id:{ "lineitems_prodId":"$lineitems.prodId" ,"lineitems_productName":"$lineitems.productName" },
"lineitems_itemCount-sum":{$sum:"$lineitems.itemCount"} }
},
{ $sort:{ "lineitems_itemCount-sum":-1 }},
{ $limit: 10 },
],{allowDiskUse: true});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment