Search⌘ K
AI Features

Write Query: Using Logical Operators

Learn how to apply logical operators in MongoDB to filter documents based on multiple conditions.

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":
...