Search⌘ K
AI Features

Write Query: Update a Record

Learn how to quickly locate and update values in a MongoDB collection.

We'll cover the following...

Question

Given the following sample documents from the orders collection:

[
  {
    "_id": "3a758b14e7e292cf190b1ac5",
    "customerId": "ee3c04494293e51a48af88d1",
    "items": [
      "External Hard Drive",
      "USB Hub"
    ],
    "total": 1922,
    "status": "Processing",
    "orderDate": ISODate("2024-07-05T00:00:00Z")
  },
  {
    "_id": "8725037ffbdb4741fb1caaa5",
   
...