Show a Linked Issues and and show any tasks to those results

Melissa C January 7, 2022

Hello Everyone!!!

I'm currently using Jira Server v 7.13

Query:

Show all Iinked Issues to a Issue Key, Show only Specific Project AND

show all of the Tasks/Subtasks to those results 

Partial Solution: 

issue in linkedIssues (XYZ-2222) AND project = "Product Management"

Problem:

The Query above shows me the first part for the query,  Where I'm having difficult is for the second part of the query, Show the Tasks/SubTasks of those results.

 

I tried using the parent() function but I wasn't able to nest it properly.  

 

Is this possible out of the box? 

Does anyone have any suggestions on how to do this?

1 answer

0 votes
Vishwas
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 8, 2022

Hey @Melissa C 

This below JQL query gives the sub-tasks and linked issues for an issue.

(parent = XYZ-2222 OR key in linkedIssues("XYZ-2222")) AND Project = "Product Management"

please check and let me know.

Regards,

Vishwas

Melissa C February 5, 2024

@Vishwas 

That didn't work!

(parent = XYZ-2222 OR key in linkedIssues("XYZ-2222")) AND Project = "Product Management"

I broke it down

  • parent =XYZ-2222 = Showed nothing
  • (parent = XYZ-2222 OR key in linkedIssues("XYZ-2222")) = Showed me 1 linked item
  • (parent = XYZ-2222 OR key in linkedIssues("XYZ-2222")) AND Project = "Product Management" = Showed nothing

We are looking to also see Tasks Or Issues in Epic

Suggest an answer

Log in or Sign up to answer