logseq_get_all_pages
Retrieve a list of all pages within a Logseq graph, including basic metadata, to enable efficient content management and organization for your knowledge base.
Instructions
List all pages in the graph with basic metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo | No | Repository name (default: current graph) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for listing all pages",
"properties": {
"repo": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Repository name (default: current graph)",
"title": "Repo"
}
},
"title": "GetAllPagesParams",
"type": "object"
}