Operators: $lt
Finding documents where the value of a field is less than the specified value.
🪶 The $lt (less than) operator is used to find documents where the value of a field is strictly less than the specified value.
https://merlindb.netlify.app/manual/reference/ltOperators: $gt
Finding documents where the value of a field is greater than the specified value.
🪶 The $gt (greater than) operator is used to find documents where the value of a field is greater than the specified value.
https://merlindb.netlify.app/manual/reference/gtOperators: $or
Finding documents that match at least one of the conditions.
🪶 The $or operator is used to perform queries that match documents that satisfy at least one of the specified conditions.
https://merlindb.netlify.app/manual/reference/orOperators: $ne
Finding documents where the value of a field does not equal the specified value.
🪶 The $ne (not equal) operator is used to find documents where the value of a field is not equal to the specified value.
https://merlindb.netlify.app/manual/reference/neOperators: $mod
Checking whether the value of a field divided by a divisor has a specific remainder.
🪶 The $mod operator is used to perform a modulo operation on a field and compare the result with a specified value.
https://merlindb.netlify.app/manual/reference/modOperators: $nin
Finding documents where the value of a field is not in a specified set of values.
🪶 The $nin (not in) operator is used to find documents where the value of a field is not in a specified set of values.
https://merlindb.netlify.app/manual/reference/ninOperators: $all
Selecting documents where an array field contains all specified elements.
🪶 The $all operator is used to select documents where an array field contains all the elements specified in the query.
https://merlindb.netlify.app/manual/reference/allOperators: $inc
Incrementing (or decrementing) the value of a numeric field in a document.
🪶 The $inc operator is used to increment (or decrement, if a negative number is provided) the value of a numeric field in a document.
https://merlindb.netlify.app/manual/reference/incOperators: $gte
Finding documents where the value of a field is greater than or equal to the specified value.
🪶 The $gte (greater than or equal) operator is used to find documents where the value of a field is greater than or equal to the specified value.
https://merlindb.netlify.app/manual/reference/gteOperators: $lte
Finding documents where the value of a field is less than or equal to the specified value.
🪶 The $lte (less than or equal) operator is used to find documents where the value of a field is less than or equal to the specified value.
https://merlindb.netlify.app/manual/reference/lte