move_note
Relocate notes within your knowledge base while preserving database integrity and maintaining all existing links between files.
Instructions
Move a note to a new location, updating database and maintaining links.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination_path | Yes | ||
identifier | Yes | ||
project | No |
Input Schema (JSON Schema)
{
"properties": {
"destination_path": {
"title": "Destination Path",
"type": "string"
},
"identifier": {
"title": "Identifier",
"type": "string"
},
"project": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project"
}
},
"required": [
"identifier",
"destination_path"
],
"type": "object"
}