Skip to content

Instantly share code, notes, and snippets.

@mertyertugrul
Last active July 11, 2021 11:36
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 mertyertugrul/a983d7d642d4f3835a7c921f6a5f1b0f to your computer and use it in GitHub Desktop.
Save mertyertugrul/a983d7d642d4f3835a7c921f6a5f1b0f to your computer and use it in GitHub Desktop.
MongoDB Convert Field Type to Date
db.Purchases.updateMany(
{},
[{"$set":{"<fieldName>":{"$toDate":"$<fieldName>"}}}]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment