I am trying to get issues for a project that have child issues instead of bugs. What do I need to do to get this? I think it may be a jql query, but not sure and what the query would be.
Hi,
Sadly you cannot achieve the desired search using standard features on Jira, you must go for a third-party app instead. If you are on Server/DetaCenter, using i.e. JQL Booster Pack you can type the following:
1) Search for issue on project 'MyProject' having subtasks:
project = MyProject AND issue IN hasSubtasks()
(*) Note that this is just an example, you must tune above query to fit your needs.
Using this app you can also query other issues relations, check:
References:
Kind Regards
Hi @Loretta
You cannot do this with out-of-the-box JIRA. The closest you can get is to list the items and sort by the ones which have subtasks (you cannot search the subtasks field):
project = myproject ORDER BY subtasks
If you have any of the add-on marketplace scripting tools, you can build a query to do what you want.
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Loretta,
You can get the result using JQL Search Extensions
You can search for issues that have subtasks with a particular issue type.
There are many other functions related to subtasks like:
The full documentation can be found here.
Regards,
Ziad
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.