Link and dependency management between tickets.
Manages directional links between tickets. Supports
link types: BLOCKS, RELATED, DUPLICATE, CHILD. Accessed
via ObjTicket delegation methods (add_link, get_links).
| Column | Type | Description |
|---|---|---|
| Guid | char(50) | Primary key |
| SourceGuid | char(50) | Source ticket |
| TargetGuid | char(50) | Target ticket |
| LinkType | enum | BLOCKS, RELATED, DUPLICATE, CHILD |
| CreatedBy | varchar(255) | Who created the link |
| CreatedDate | datetime | When the link was created |
Create(source_guid, target_guid, link_type, created_by) - Create linkget_links(guid) - Get all links for a ticket (source or target)get_blocked_by(guid) - Get tickets that block this ticketremove_link(guid) - Delete a linkpython factory.core/ObjTicketLink.py list-links <ticket_guid>
ObjTicket.py - Parent ticket orchestratorObjEnum.py - LinkType enum, LINKED action type