I want to filter stories and their related sub-tasks on a Jira Kanban board. Swimlanes of the Kanban board are based on stories.
The query behind the board is currently: "project = OTE AND type != epic ORDER BY Rank ASC"
Unfortunately Epics containing sub-tasks are also appearing on the board.
Is there a possibility to hide the epics with sub-tasks from the board with for example ScriptRunner functionality?
Hi @Ron Becker,
I think you can use the below filter. It will show only those issues which are not linked to epic.
project = OTE AND type != epic and "Epic Link" is EMPTY ORDER BY Rank ASC
Hi @Ron Becker,
You can also use the below filter query,It will not show the subtask issue which has linked with Epic.
project = OTE AND type != epic and issueFunction not in subtasksOf("issuetype = epic")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.