get_backlinks
Identify and retrieve all notes that link to a specified note using the Flint Note system, enabling efficient tracking of references and connections within your markdown-based note vault.
Instructions
Get all notes that link to the specified note
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"
}