Need a jquery to display all the clone issue under 'links' and the same query should ignore all the other links eg: 'relates to' , discovered while testing' etc
Alexey's suggestion returns nothing for me.
Not a syntax problem, just does not return anything.
A minor change, *DOES* return all clones of a specific issue.
issue in linkedIssues (ABC-123) and issueLinkType in ("clones")
Hello,
In the OOB Jira you could use the following JQL query:
issue in linkedIssues(ABC-123,"clone")
This query would show you all cloned issues for ABC_123 issue.
This query is not flexible because it shows results only for one issue. If you want a more flexible solution, you need an add-on.
For example, you could use the JQL Search Extensions for Jira add-on.
You could write a JQL query like this:
issue in links(
"clone"
,
"project = TEST"
)
This query would show all issues, which are placed in the TEST project and have the Cloned link.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try like this:
issue in linkedIssues(ABC-123,"clones")
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.