By Hemanta Sundaray on 2021-11-29
The $gt keyword can be used to find documents where the value of the field is greater than the value in the query. Similarly the $gte keyword is used to find documents where the value of the field is the same as or greater than the given value.
The following query finds all the products whose prices are greater than 299.99
const query = async () => {
const result = await Product.find({
price: { $gt: 299.99 },
})
console.log(result)
}
query()
The following query finds all the products whose prices are greater than or equal to 299.99
const query = async () => {
const result = await Product.find({
price: { $gte: 299.99 },
})
console.log(result)
}
query()