workflowy_list_nodes
Retrieve child nodes from a WorkFlowy outline to navigate hierarchical data and manage task structures. Specify parent_id to list sub-items or omit for root-level content.
Instructions
List WorkFlowy nodes (omit parent_id for root)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_id | No |
Input Schema (JSON Schema)
{
"properties": {
"parent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"type": "object"
}