Skip to content

Instantly share code, notes, and snippets.

@bradtaniguchi
Last active December 15, 2017 23:20
Show Gist options
  • Save bradtaniguchi/296b124539b46c9bd34166a2609e210c to your computer and use it in GitHub Desktop.
Save bradtaniguchi/296b124539b46c9bd34166a2609e210c to your computer and use it in GitHub Desktop.
db.getCollection('form').aggregate([
{
"$match": {
"_id": ObjectId("5a27217436a3d3022e1277c9")
}
},
{
"$unwind": "$views"
},
{
"$match": {
"views.code": "view830"
}
},
{
"$unwind": "$views.fields"
},
{
"$match": {
"views.fields.type": {
"$in": ["radio", "list"]
}
}
}
// {
// "$project": {
// "code": {
// $let: {
// vars: []
// in:
// }
// }
// }
// }
// {
// "$unwind": "$fields"
// },
// {
// "$unwind": "$fields.fields"
// },
// {
// "$match": {
// "fields.fields.code":
// }
// }
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment