Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

help with a query

Jenni Gardiner
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 17, 2020

I have a kanban board which contains:

Stories with sub tasks

Tasks with sub tasks

Bugs with sub tasks

 

I want to write a query that will show my stories and their sub tasks without showing all the other sub tasks

if i do:

component in (xxxx) AND issuetype in (Story, Sub-task) i get ALL the sub tasks

 

Thanks in advance

1 answer

0 votes
sukkeong
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 17, 2020

First, create 3 filters, e.g.

  • story_wsub_filter
  • task_wsub_filter
  • bug_wsub_filter

Then, create an overall filter, that uses all 3 filters, e.g.

JQL: filter="story_wsub_filter" OR filter="task_wsub_filter" OR filter="bug_wsub_filter"

 

 

Cristian Ionescu
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 18, 2020

Suggest an answer

Log in or Sign up to answer