Skip to content

Instantly share code, notes, and snippets.

@fbiville
Last active August 29, 2015 14:18
Show Gist options
  • Save fbiville/a04ffe10b48ad3482309 to your computer and use it in GitHub Desktop.
Save fbiville/a04ffe10b48ad3482309 to your computer and use it in GitHub Desktop.
M101J-W3
var min_homeworks = db.students.aggregate([{"$unwind": "$scores"}, {"$match": {"scores.type": "homework"}}, {"$group": {"_id":"$_id", min_score: {"$min":"$scores.score"}}}]);
while (min_homeworks.hasNext()) {
var doc = min_homeworks.next();
db.students.update({"_id": doc["_id"]}, {"$pull": {"scores": {"type": "homework", "score": doc["min_score"]}}});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment