list_nodes
Retrieve nodes from Workflowy by specifying a parent ID to list child nodes or omit to fetch root nodes, enabling structured data access and organization.
Instructions
List nodes in Workflowy. If a parentId
is provided, it lists the child nodes of that parent. If omitted, it lists the root nodes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parentId | No | ID of the parent node to list children from. If omitted, returns root nodes. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"parentId": {
"description": "ID of the parent node to list children from. If omitted, returns root nodes.",
"type": "string"
}
},
"type": "object"
}