On this page
$gte
$gte-
Syntax:
{field: {$gte: value} }$gteselects the documents where the value of thefieldis greater than or equal to (i.e.>=) a specified value (e.g.value.)For most data types, comparison operators only perform comparisons on fields where the BSON type matches the query value’s type. MongoDB supports limited cross-BSON comparison through Type Bracketing.
Consider the following example:
db.inventory.find( { qty: { $gte: 20 } } )This query would select all documents in
inventorywhere theqtyfield value is greater than or equal to20.Consider the following example which uses the
$gteoperator with a field from an embedded document:db.inventory.update( { "carrier.fee": { $gte: 2 } }, { $set: { price: 9.99 } } )This
update()operation will set the value of thepricefield that contain the embedded documentcarrierwhosefeefield value is greater than or equal to2.