project = ENFS AND issuetype in (Epic, Story, Sub-task) ORDER BY cf[10008] ASC, assignee ASC, created DESC
Currently i am using above JQL querry to filter our my view on board, but as along with 'Story' my 'Internal Bugs' epic also as Sub-Tasks, so its appearing in my board which i dont need.
i need only Stories and their subtasks to be visible iso including Internal bugs which as subtasks too.
Pls help me out with an querry
You might need to exclude that one epic in the query itself. You could try this:
Project = ENFS AND issuetype IN (Epic, Story, Sub-task) AND parent NOT IN (ENFS-####)
You would need to replace ENFS-#### with the issue key for the epic(s) you want to exclude.
Hi @MN, Sunil and welcome!
I am not sure if I understand your request correctly. What exactly is the type of your internal bugs? Are they tickets included in a specific epic and you would like them to be shown on the board?
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.