Skip to content

Instantly share code, notes, and snippets.

@Mualig
Created September 26, 2018 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mualig/cd7d7b30de79edaded1b6876945e55e0 to your computer and use it in GitHub Desktop.
Save Mualig/cd7d7b30de79edaded1b6876945e55e0 to your computer and use it in GitHub Desktop.
Remove old mongo documents based on _id
db.getCollection("raws").remove({
$where: function() {
return this._id.getTimestamp() <= new Date("2018-08-12");
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment