bulk_create_items
Insert multiple items into a collection in a single operation. Provide the collection name and an array of item objects to efficiently add bulk data.
Instructions
Create multiple items in a collection at once. More efficient than creating items one by one. Example: {collection: "articles", items: [{title: "Article 1", status: "draft"}, {title: "Article 2", status: "draft"}]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | Yes | Collection name | |
| items | Yes | Array of items |