my epic is blocked by an issue, how to filter this issues by jira search
I would just use script runner for querying linked issue
type = epic AND issueFunction in linkedIssuesOf("resolution is empty", "blocks") and resolution is empty
This query gives us all unresolved epics which are blocked by unresolved issues
Hi,
you can use function linkFinderForIssues from our add-on Link Finder, eg.:
issue in linkFinderForIssues("project = X", "blocks", "Epic")
where X is the name of your project and Epic is the name of your epic.
More details about this function and many more you can find here.
Regards,
Lime Trees Support Team
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you try
issue in linkedIssues(issueKey,linkType)
issue key is the Epic Issue ID
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.