zk_remove_link
Delete a link between two notes in a Zettelkasten system by specifying source and target note IDs, optionally removing bidirectional connections.
Instructions
Remove a link between two notes. Args: source_id: ID of the source note target_id: ID of the target note bidirectional: Whether to remove the link in both directions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bidirectional | No | ||
source_id | Yes | ||
target_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"bidirectional": {
"default": false,
"title": "Bidirectional",
"type": "boolean"
},
"source_id": {
"title": "Source Id",
"type": "string"
},
"target_id": {
"title": "Target Id",
"type": "string"
}
},
"required": [
"source_id",
"target_id"
],
"title": "zk_remove_linkArguments",
"type": "object"
}