Hi,
subtasks could be from a task or from a bug. I want to have a filter only for bugs and subtasks from bugs. How can I write a search for subtasks which are only a child from a bug?
Thank you very much.
Best regards.
Hi
Yes, Its not possible with existing Jira query .
You need to have plugin like" JQL Search Extensions" to have this functionary in the advanced search tab . This plugin works for both could and server
With simple query can get the results
Query using the plugin : parentIssueType = Bug(Gives us list of sub-tasks which bugs are the parent issues )
Regards,
Sudhakar
Hi Claudia,
Try this,
issuetype = sub-task AND issueFunction in subtasksOf("issuetype in (task, bug)")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
It is not possible out of the box.
You need a plugin like ScriptRunner to have this functionality. If you use ScriptRunner, then you can use the subtaskOf function:
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_subtasksof
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.