logseq_get_page_content
Retrieve the hierarchical block content of a specific page from your Logseq knowledge graph, using the page name or UUID for targeted access.
Instructions
Get block hierarchy for specific page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
src_page | Yes | Page name or UUID |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"src_page": {
"description": "Page name or UUID",
"examples": [
"[[Journal]]",
"6485a-9de3..."
],
"title": "Src Page",
"type": "string"
}
},
"required": [
"src_page"
],
"title": "GetPageBlocksTreeParams",
"type": "object"
}