remove_block
Permanently delete a block and its child blocks from the Logseq graph. Specify the block ID to complete the operation, which cannot be undone. Ideal for managing and organizing your knowledge base.
Instructions
Removes a block from the Logseq graph.
⚠️ Permanently removes the block and all its children. Cannot be undone.
Args:
block_id: The ID of the block to remove.
Returns:
Result of the removal operation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"block_id": {
"title": "Block Id",
"type": "string"
}
},
"required": [
"block_id"
],
"title": "remove_blockArguments",
"type": "object"
}