insert-many
Insert multiple documents into a MongoDB collection using an array of data. Specify the database, collection, and documents to streamline bulk data insertion processes.
Instructions
Insert an array of documents into a MongoDB collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name | |
database | Yes | Database name | |
documents | Yes | The array of documents to insert, matching the syntax of the document argument of db.collection.insertMany() |