bulk_update_items
Update multiple items in a collection simultaneously by specifying a collection name and an array of items with their IDs and fields to update.
Instructions
Update multiple items in a collection at once. Each item must include an id field. Example: {collection: "articles", items: [{id: 1, status: "published"}, {id: 2, status: "published"}]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | Yes | Collection name | |
| items | Yes | Array of items with id and fields to update |