Lets say, I have an issue - 123 which has been linked with issue - 456, issue - 789 and issue - 1234.
I would like to create a filter such a way that lists all the issues (456, 789 & 1234) linked to issue - 123.
Please suggest options.
Hi @Siva Raju
Please find below JQL
If we have to find all the issues that are linked, we will have JQL as follows
issue in linkedIssues(issueKey)
Example: issue in linkedIssues(ABC-123)
If you are looking at a specific link type, the JQL would go like this
issue in linkedIssues(issueKey,linkType)
Example: issue in linkedIssues(ABC-123,"is duplicated by")
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.