Operators: $eq

Comparing values ​​in a collection query.

🪶 The $eq (equal) operator is used to compare values ​​in queries.
https://merlindb.netlify.app/manual/reference/eq

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/lt

Operators: $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/gt

Operators: $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/or

Operators: $in

Checking whether the value of a field is present in the query.

🪶 The $in operator is used to check whether the value of a field is present in a specified set of values.
https://merlindb.netlify.app/manual/reference/in

Operators: $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/ne

Cursor Methods: Map

Transforming the documents of a query.

🪶 The map method allows you to transform the documents returned by a query.
https://merlindb.netlify.app/manual/reference/map

Operators: $set

Updating values ​​of a field in a document.

🪶 The $set operator is used to update the value of a specific
  • field in a document.
    https://merlindb.netlify.app/manual/reference/set

    Cursor Methods: Min

    Limiting a minimum value for a query in the collection.

    🪶 The min method defines a minimum value for the query, which must not be less than the specific limit.
    https://merlindb.netlify.app/manual/reference/min

    Operators: $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/mod

    Operators: $not

    Performing logical negation on a query expression.

    🪶 The $not operator is used to perform logical negation on a query expression.
    https://merlindb.netlify.app/manual/reference/not

    Operators: $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/nin

    Operators: $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/all

    Operators: $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/inc

    Cursor Methods: Max

    Limiting a maximum value for a query in the collection.

    🪶 The max method defines a maximum value for the query
  • , which must not exceed the specific limit.
    https://merlindb.netlify.app/manual/reference/max

    Operators: $and

    Combining multiple conditions into a single logical query.

    🪶 The $and operator is used to combine multiple conditions into a single logical query.
    https://merlindb.netlify.app/manual/reference/and

    Operators: $nor

    Finding documents that do not match all specified conditions.

    🪶 The $nor (not or) operator is used to
  • find documents that do not match all specified conditions.
    https://merlindb.netlify.app/manual/reference/nor

    Operators: $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/gte

    Operators: $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

    Model Methods: Find

    Finding documents in the database collection in MerlinDB.

    🪶 MerlinDB's find method is used to find
  • documents in a collection.
    https://merlindb.netlify.app/manual/reference/find