How to find all the subtask issues belonging to a specific parent-issuetype

February 10, 2015

Hi all,

I need to filter all the children of issues that have a specific Issue-Type.

I've found a lot of posts around but none of them work for me: syntax is not supported.

Thanx

 

2 answers

1 accepted

0 votes
Answer accepted
February 10, 2015

I need to write a broader query: semantically:

parent.issueType IN ('',…)
Udo Brand
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.
February 10, 2015

This is not possible in JIRA Cloud. With Script runner you could achieve this, but this plugin is not available for Cloud.

February 10, 2015

I guessed… what a pity

1 vote
Markus Tollmann February 10, 2015

Just use 

parent = IssueKey 

(e.g. parent = JR-145)

or something like

parent in (JR-145,JR-138)

 

Suggest an answer

Log in or Sign up to answer