Has anyone who worked in JQL? Actually, I want a List of all those issues that are linked with any issue. I can get subtasks but I am unable to get linked tasks/Bugs in the filter
Hi @Baqir Ali ,
welcome to the Atlassian community!
You can use linkedIssues() in your jql :
Searches for issues that are linked to an issue. You can restrict the search to links of a particular type.
Syntax |
linkedIssues(issueKey) linkedIssues(issueKey,CaseSensitiveLinkType) |
---|---|
Supported fields | Issue |
Supported operators | IN , NOT IN |
Unsupported operators | = , != , ~ , !~ , > , >= , < , <= IS , IS NOT , WAS , WAS IN , WAS NOT , WAS NOT IN , CHANGED |
Examples |
|
issue in linkedIssues("COMMAND-440")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Welcome to the community
You can use the linkedIssues() function
linkedIssues(issueKey)
linkedIssues(issueKey,CaseSensitiveLinkType)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Baqir Ali
For a single Issue, use this JQL:
issue in linkedIssues("<Key Here>")
or
issueLink = <Key Here>
Ste
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.