MongoDB findOneAndUpdate()

In MongoDB the db.collection.findOneAndUpdate() method updates a single document based on the filter and sort criteria.

The collection part is the name of the collection with which to perform the operation against.

Read more

MongoDB findAndModify()

In MongoDB the db.collection.findAndModify() method modifies and returns a single document.

The collection part is the name of the collection with which to perform the operation against.

Read more

MongoDB update()

In MongoDB the db.collection.update() method modifies an existing document or documents in a collection.

By default, it only updates a single document. But if multi: true is specified, then it updates all documents that match the query criteria.

Read more

MongoDB insert()

In MongoDB the db.collection.insert() method inserts a document or documents into a collection.

The collection part is the name of the collection to insert the document/s into.

Read more

MongoDB insertMany()

In MongoDB the db.collection.insertMany() method inserts multiple documents into a collection.

The collection part is the name of the collection to insert the documents into.

Read more

MongoDB insertOne()

In MongoDB the db.collection.insertOne() method inserts a single document into a collection.

The collection part is the name of the collection to insert the document into.

Read more

2 Ways to Delete a Collection in MongoDB

If you no longer need a collection in MongoDB, you can delete it.

Actually, the term for deleting a collection is to drop the collection.

Either way, here are two ways to delete/drop a collection when using the mongo shell.

Read more

4 Ways to List the Collections in a MongoDB Database

When using MongoDB, there’s more than one way to list the collections in a database.

Here are four ways to get a list of collections in a MongoDB database:

  • The show collections Command
  • The listCollections Command
  • The db.getCollectionNames() Method
  • The db.getCollectionInfos() Method

Read more