get_note_links
Extract incoming, outgoing, internal, and external links for a specific note to analyze or manage its connections within the Flint Note system.
Instructions
Get all links for a specific note (incoming, outgoing internal, and external)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes | Note identifier (type/filename format) |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"description": "Note identifier (type/filename format)",
"type": "string"
}
},
"required": [
"identifier"
],
"type": "object"
}