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