I have a internal defect filter which has lots of projects included. Each of the defects can be linked to another defect . I would like to filter all linked issues which are of specific type and filer those out. It's like
project in (bbb,ccc,xxx,yyy) AND issuetype in (Bug, "Internal Defect") AND status in ("In Progress", Resolved, "To Do", Blocked) AND assignee in ( aa,bb,cc) and linked issues like ('PLAT%")
Hi @[deleted] and welcome to our Community!
Please, have a look at the following:
Get list of linked issues - how to?
Hope it helps.
Hello,
Use the linkedIssues JQL function:
issue in linkedIssues(ABC-123,"is duplicated by")
You can find more info here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want all linked issues. I don't want to specify the linkedissues in the query. Is there way I can do this
Like Issue in linkedIssues like (ABC*) and it brings any linked defect that has a prefix abc?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issue in linkedIssues(abc*,"is blocked by") . Can I do this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You cant, you would need a plugin for it. There are multiple plugins for it: Power Scripts, ScriptRunner, Jtricks, JQL Extensions for Jira.
If you want to use the Power Scripts add-on, your JQL query would look like this:
key in hasLinksOfType(
"project = ABC"
,
"Blocks"
)
You can find more information here:
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.