zk_get_linked_notes
Retrieve linked notes in a Zettelkasten system by specifying a note ID and link direction (outgoing, incoming, or both) to explore note connections and enhance knowledge synthesis.
Instructions
Get notes linked to/from a note. Args: note_id: ID of the note direction: Direction of links (outgoing, incoming, both)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | No | both | |
note_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"default": "both",
"title": "Direction",
"type": "string"
},
"note_id": {
"title": "Note Id",
"type": "string"
}
},
"required": [
"note_id"
],
"title": "zk_get_linked_notesArguments",
"type": "object"
}