Skip to content

Instantly share code, notes, and snippets.

@arthuralvim
Created July 27, 2017 17:56
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 arthuralvim/2ab65374ec71629acc0260ab1ea158bc to your computer and use it in GitHub Desktop.
Save arthuralvim/2ab65374ec71629acc0260ab1ea158bc to your computer and use it in GitHub Desktop.
Remove mongo ids from specific collection.
var mongo_ids = [
ObjectId("596cc5e54060d2999dd2ffb2"),
...
];
db.getCollection('collection_name').remove({
_id: {
$nin: mongo_ids
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment