get_backlinks
Find all notes that link to a specific note in your Obsidian vault to understand connections and discover incoming references for better content organization.
Instructions
Get all notes that link to a specific note (incoming links)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}