Is it possible to find all task with a special type an also find all sub-tasks which has a parent with this type.
Example:
JIRAID-123 with type "Bug"
JIRAID-125 with type "Feature"
JIRAID-127 with type "Bug"
JIRAID-130 with type "Sub-task" PARENT is JIRAID-127
JIRAID-131 with type "Sub-task" PARENT is JIRAID-127
The result of my search should find:
JIRAID-123 with type "Bug"
JIRAID-127 with type "Bug"
JIRAID-130 with type "Sub-task" PARENT is JIRAID-127
JIRAID-131 with type "Sub-task" PARENT is JIRAID-127
Is there a way to preform a singel search with this result?
Another plugin you could try is the Craftforge JQL Functions Plugin (free) which allows you to call a filter from another filter, so with this you could create one filter 'issuetype = Bug' and save it as say 'Bugs Filter', then create another filter 'issuetype = Bug OR issue in subtaskIssuesFromFilter ("Bugs Filter")'
There is no way to do this out of the box. Try the JQL Tricks Plugin which is a commercial one.
The query will be something like:
issuetype=Bug OR parent("issuetype=Bug")
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.