Skip to content

Instantly share code, notes, and snippets.

@burubur
Created October 27, 2017 07:14
Show Gist options
  • Save burubur/c1ade690c860ad200b597d68acf059a1 to your computer and use it in GitHub Desktop.
Save burubur/c1ade690c860ad200b597d68acf059a1 to your computer and use it in GitHub Desktop.
db.collection.find(
// where clause
{
items: { $elemMatch : { "code": 3}}
},
// projection fields
{
_id: "_id",
order_id: "order_id"
// return matched status
items: { $elemMatch : { "code": 3}}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment