This commit is contained in:
JMARyA 2024-02-12 08:30:27 +01:00
parent 68cc0a4a34
commit b911a95873
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 30 additions and 6 deletions

View file

@ -78,7 +78,6 @@ Usage:
- `$and`: The `$and` operator performs a logical AND operation on an array of two or more expressions and selects the documents that satisfy all the expressions.
- `$or`: The `$or` operator performs a logical OR operation on an array of two or more expressions and selects the documents that satisfy at least one of the expressions.
- `$not`: The `$not` operator performs a logical NOT operation on the specified expression and selects the documents that do not match the expression.
- `$exists`: The `$exists` operator matches documents where a specified field exists or does not exist.
- `$type`: The `$type` operator matches documents where a specified field has a specific [BSON](files/BSON.md) type.
- `$regex`: The `$regex` operator matches documents where a specified field matches a [regular expression](tools/Regex.md).
- `$text`: The `$text` operator performs a text search on the specified field(s).