Hi guys!
I need a hand for finding a best way to filter linkedissues.
I have dozend of "mother" ticket which contain 5 linked issues:
abc-1
xyz-2
cdm-3
opl-4
bvc-5
The question is, how do I create a filter to show me
"If cdm-3 and opl-4 and bvc-5" is closed, show me the mother ticket.
Thanks in advance family!
Hi @Daniel Aleixo ,
Unfortunately, out of the box there is no JQL can give this result
Standard JQL doesn't easily allow it but the results can be quickly found using JQL Search Extensions. It's a professional paid indexing service provided by a company I've partnered with.
You can use the following query to get the Parent of subtask with closed status and more reference
issue in parentOf("issuekey in (cdm-3,opl-4, bvc-5) and status = closed")
Thanks
Mohamed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.