You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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?
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.