get_page_linked_references
Retrieve all blocks containing links to a specific Logseq page. Input the page name to generate a list of references for tracking and organizing interconnected notes.
Instructions
Gets all linked references to a specific page.
Returns blocks containing [[Page Name]] links to the specified page.
Args:
page_name: The name of the page to find references to.
Returns:
List of blocks that reference the specified page.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_name": {
"title": "Page Name",
"type": "string"
}
},
"required": [
"page_name"
],
"title": "get_page_linked_referencesArguments",
"type": "object"
}