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.
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.