I would like to pull a JQL query of all the Jira tickets linked to a JPD Idea. We often link epics, but I would like to be able to query all the child tickets of those epics. Is this possible?
Hi, @Dakota Beres - I don't believe this is easily achievable out of the box. However, I think if you knew the ID for the idea, you could use:
parentEpic in linkedIssues("IDEA-123")
See this guide for how to find all child items for an Epic: https://support.atlassian.com/jira/kb/retrieve-all-child-and-linked-work-items-of-an-epic-in-jira-cloud/
If you need this to be dynamic/automatic, the Automate actions for the delivery panel let you trigger actions when ideas link to epics — you could perhaps use a branch rule with JQL like parentEpic = {{issue.key}} to reach children?
That JQL worked beautifully!
I did have to adjust slightly to remove the JPD tickets that were attached to the "IDEA-123" ticket but that was easy enough. Thank you so much!
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.