batch_append_notes
Append content to multiple notes in a single atomic operation within Obsidian vaults, ensuring all updates complete successfully or none are applied.
Instructions
Append content to multiple notes atomically
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appends | Yes | ||
confirm | No |
Input Schema (JSON Schema)
{
"properties": {
"appends": {
"items": {
"$ref": "#/$defs/NoteAppend"
},
"title": "Appends",
"type": "array"
},
"confirm": {
"default": false,
"title": "Confirm",
"type": "boolean"
}
},
"required": [
"appends"
],
"type": "object"
}