Work with Issue Links
Creating and deleting links
With HAPI you can quickly and easily link issues. Link two issues as follows:
def source = Issues.getByKey('SR-1') def destination = Issues.getByKey('SR-2') source.link('blocks', destination)
Removing a link is just as easy. Remove a link as follows:
def source = Issues.getByKey('SR-1') def destination = Issues.getByKey('SR-2') source.unlink('blocks', destination)
Accessing links in transition
You may wish to validate that an issue has particular links in a workflow validator. Typically, you cannot access links added during the current transition or issue update until it's complete. However, we have made it easy using the extension methods getAllInwardLinks()
and getAllOutwardLinks()
on
MutableIssue
.
For example, you want to use a workflow validator to check that there is at least one outward "Blocker" link:
issue.allOutwardLinks*.issueLinkType.outward == ['blocks']