$expr
New from version 4.0.
Not supported by Elastic cluster.
The $expr operator in Amazon DocumentDB allows you to use aggregation expressions within the query language. It enables you to perform complex comparisons and computations on fields within a document, similar to the way you would use aggregation pipeline stages.
Parameters
-
expression: An expression that returns a boolean value, allowing you to perform comparisons and computations on document fields.
Example (MongoDB Shell)
The following example demonstrates how to use the $expr operator to find all documents where the manufacturingCost field is greater than the price field.
Create sample documents
db.inventory.insertMany([ { item: "abc", manufacturingCost: 500, price: 100 }, { item: "def", manufacturingCost: 300, price: 450 }, { item: "ghi", manufacturingCost: 400, price: 120 } ]);
Query example
db.inventory.find({ $expr: { $gt: ["$manufacturingCost", "$price"] } })
Output
{ "_id" : ObjectId("60b9d4d68d2cac581bc5a89a"), "item" : "abc", "manufacturingCost" : 500, "price" : 100 },
{ "_id" : ObjectId("60b9d4d68d2cac581bc5a89c"), "item" : "ghi", "manufacturingCost" : 400, "price" : 120 }
Code examples
To view a code example for using the $expr command, choose the tab for the language that you want to use: