Within Jira (5.x) I would like to create a search that hides subtasks for the 'task' type only but that shows subtasks for epics and stories. It's OK to assume only the task, story and epic type.
Is this possible? How? I'm mostly not sure about how to get the parent object's type.
Community moderators have prevented the ability to post new answers.
This is not possible with standard JQL. You can find subtasks with 'type in subTaskIssueTypes()' and you can get the parent issue with 'parent' but you can't check the issue type for the parent.
You should have a look at the JQL Tricks Plugin. It has a 'parent(JqlQuery)' function:
https://marketplace.atlassian.com/plugins/com.j-tricks.jql-plugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.