MongoDB is a popular NoSQL database that is document-oriented and designed for scalability and flexibility. You can work with MongoDB in a GUI with [MongoDB Compass](MongoDB%20Compass.md).
-`$eq`: The `$eq` operator matches documents where the value of a field equals a specified value.
-`$ne`: The `$ne` operator matches documents where the value of a field is not equal to a specified value.
-`$gt`: The `$gt` operator matches documents where the value of a field is greater than a specified value.
-`$gte`: The `$gte` operator matches documents where the value of a field is greater than or equal to a specified value.
-`$lt`: The `$lt` operator matches documents where the value of a field is less than a specified value.
-`$lte`: The `$lte` operator matches documents where the value of a field is less than or equal to a specified value.
-`$in`: The `$in` operator matches documents where the value of a field equals any value in a specified array.
-`$nin`: The `$nin` operator matches documents where the value of a field does not equal any value in a specified array.
-`$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.
-`$text`: The `$text` operator performs a text search on the specified field(s).
-`$elemMatch`: The `$elemMatch` operator matches documents where a specified array field contains at least one element that matches all the specified conditions.
-`$size`: The `$size` operator matches documents where a specified array field has a specific size.
-`$exists`: The `$exists` operator matches documents that contain or do not contain a specified field, including documents where the field value is `null`.