trying to query all technical tasks of an epic

Robert Pepitone September 15, 2013

I'm trying to query all technical tasks that are subtasks of stories belonging to a particular epic.

2 answers

1 accepted

1 vote
Answer accepted
Thomas Heidenreich
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.
September 16, 2013

With the Search Linked Issues for JIRA plugin you could use a query like:

issue in subtaskIssuesFromQuery("'Epic Link' = MYEPIC-123") and issuetype = "Technical task"

if you want to limit to just sub "Technical tasks" of Stories:

issue in subtaskIssuesFromQuery("'Epic Link' = BMIP-24 and issuetype = Story") and issuetype = "Technical task"

0 votes
Thomas Heidenreich (//S) September 16, 2013

wrong account

Suggest an answer

Log in or Sign up to answer