You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I have an issue type called "Non-standard IT Enhancement Request". I want a filter that not only returns those issue types, but related sub-tasks of that specific issue type. How can I do this?
This filter returns ALL sub-tasks which I don't want:
project = ITSD AND issuetype in ("Non-standard IT Enhancement Request", Sub-task)
Hi Kyle,
Sadly you cannot achieve the desired search using standard features on Jira, you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:
Find "Non-standard IT Enhancement Request" issues within the "ITSD" project and their related subtasks, i.e.:
(project = ITSD AND type = "Non-standard IT Enhancement Request") OR issue IN subtasksOf(' project = ITSD AND type = "Non-standard IT Enhancement Request" ')
(*) Note that this is just an exaple, you must tune your query to fit your needs
Using this app you can also query other issues relations, check:
References:
Hope this helps you to create awesome queries <3
Kind regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To see this feature in action check out our recent dependencies demo here: https://www.youtube.com/watch?v=eQu5VsUqyZA Keeping on top of your dependencies is a key part of ensuring project success....
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.