create_block
Add a new bullet point block to a Logseq page with specified content, optional properties, and internal page links.
Instructions
Creates a new block on a page in the Logseq graph.
Note: Blocks are automatically formatted as bullet points in Logseq UI.
Use [[Page Name]] to create links to other pages.
Args:
page_name: The name of the page to create the block on.
content: The content of the new block.
properties: Optional properties to set on the new block.
Returns:
Information about the created block.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
page_name | Yes | ||
properties | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"page_name": {
"title": "Page Name",
"type": "string"
},
"properties": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Properties"
}
},
"required": [
"page_name",
"content"
],
"title": "create_blockArguments",
"type": "object"
}