link_tickets
Link two tickets to record that one must be completed before the other can start, indicating which blocks which and establishing the correct sequence.
Instructions
Record that one ticket must be finished before another can start. Direction is from the point of view of task_uuid: "blocks" means task_uuid has to be done first. Every ticket read afterwards carries blocked_by, blocks and is_blocked, so this is how you work out what order to do things in.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| direction | Yes | Read from task_uuid's side: 'blocks' means task_uuid must be finished before other_task_uuid can start; 'blocked_by' means the reverse. Unlink with unlink_tickets. | |
| task_uuid | Yes | The ticket the link is stated from, and the one `direction` is read relative to. Swapping this with other_task_uuid reverses the meaning, so decide which end you are describing before you call. | |
| other_task_uuid | Yes | The ticket at the far end of the link. Must be a different ticket from task_uuid. |