Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rodrigoborgesdeoliveira/da696e364a54fb6d3588c8e317f1970c to your computer and use it in GitHub Desktop.
Save rodrigoborgesdeoliveira/da696e364a54fb6d3588c8e317f1970c to your computer and use it in GitHub Desktop.
On MongoDB, update createdAt (or any other field) based on _id's timestamp
db.collection.updateMany({}, [{ $set: { createdAt: { $toDate: "$_id" } } }])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment