looking for a filter to list all the sub-tasks listed under a specific jira

Gilbert Louis November 9, 2015

We define a project as a number of Features and each feature has a number of sub-task and in time other types of JIRA listed.

Here I am looking to write a filter that lists all the sub-tasks JIRA listed under a specific JIRA feature.

So for example our JIRA feature is cmp-440 and a number of sub-task JIRAs are listed in this JIRA.

Now in confluence I want to show a table to show all the sub-task and for this I need to write a query to get them.

It feels simple yet I am struggling to write it.

1 answer

0 votes
Mario Günter
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.
November 9, 2015

Hi Gilbert, 

you could use the following for getting children:

parent in (PROJECTONE-123, PROJECTTWO-321, SOMEOTHERPROJEKTISSUEKEY-1)
// in your case maybe this one:
parent in (CMP-440)

Cheers, 
Mario 

Suggest an answer

Log in or Sign up to answer