Skip to content

Instantly share code, notes, and snippets.

@gharriso
Created February 15, 2018 00:23
Show Gist options
  • Save gharriso/bb4e862ef34a47032f4a93dd0349cab8 to your computer and use it in GitHub Desktop.
Save gharriso/bb4e862ef34a47032f4a93dd0349cab8 to your computer and use it in GitHub Desktop.
db.getCollection("embeddedOrders").aggregate([
{ $match:{ "orders.orderStatus": 0 }},
{ $unwind: "$orders" },
{ $match:{ "orders.orderStatus": 0 }},
{ $count: "count" }
],{allowDiskUse: true});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment