reorder_children
Move a child node to a new index within its parent's children array to change its order. Specify the parent and node IDs along with the target position.
Instructions
Change the order of a child node within its parent's children array by moving it to a new index
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeId | Yes | The ID of the child node to reorder (must be a direct child of parentId) | |
| newIndex | Yes | The new index position for the child within the parent's children | |
| parentId | Yes | The ID of the parent node |