Get task dependencies
tasks_get_dependenciesEverything linked to one task, in both directions: what it is waiting on, what is waiting on it, and what it is merely related to. blocked is the answer that matters - true when something this task waits on is not Done yet, with blocked_by naming those. A task can be perfectly ready in every other respect and still be unstartable, so check this before telling anyone to get on with it. TWO DIFFERENT IDS COME BACK IN EVERY ENTRY, AND THEY ARE NOT INTERCHANGEABLE. dependency_id is the LINK between the two tasks - it is what tasks_remove_dependency deletes. task_id is the TASK on the other end - it is what tasks_get or tasks_update work on. Deleting takes dependency_id. Handing a task_id to tasks_remove_dependency matches no row, removes nothing, and still reports success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The task whose links you want, by title or id. A task id, never a dependency id. |