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
First, create 3 filters, e.g.
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"
Hi Jenni,
Maybe this can help you:
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.