Comparison Operators

OperatorDescriptionExample
$eqSelects documents where the value of the property is equal to the passed in value.{“c_bpm”: {“$eq”: 70}}
$gtSelects documents where the value of the property is greater than the passed in value.{“c_bpm”: {“$gt”: 70}}
$gteSelects documents where the value of the property is greater than or equal to the passed in value.{“c_bpm”: {“$gte”: 70}}
$ltSelects documents where the value of the property is lesser than the passed in value.{“c_bpm”: {“$lt”: 70}}
$lteSelects documents where the value of the property is lesser than or equal to the passed in value.{“c_bpm”: {“$lte”: 70}}
$neSelects documents where the value of the property is not equal to the passed in value.{“c_bpm”: {“$ne”: 70}}
$inSelects documents where the property matches any of the passed in values.{“c_bpm”: {“$in”: [65, 66, 67, 68, 69, 70]}}
$ninSelects documents where the property matches none of the passed in values.{“c_bpm”: {“$nin”: [65, 66, 67, 68, 69, 70]}}