batch_update_notes
Update multiple notes atomically with automatic backup and rollback functionality for batch editing in Obsidian vaults.
Instructions
Update multiple notes atomically with automatic backup and rollback
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | No | ||
dry_run | No | ||
updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"confirm": {
"default": false,
"title": "Confirm",
"type": "boolean"
},
"dry_run": {
"default": false,
"title": "Dry Run",
"type": "boolean"
},
"updates": {
"items": {
"$ref": "#/$defs/NoteUpdate"
},
"title": "Updates",
"type": "array"
}
},
"required": [
"updates"
],
"type": "object"
}