I need help building 2 queries:
Ideally, I'd like to only use natively available JQL so I can use these queries to build filters/dashboards.
To get a single parent issue you could do this:
issue in portfolioChildIssuesOf("<issue-key>") and statusCategory = done
This will provide all child issues of a parent that are done
Or
issue in portfolioChildIssuesOf("<issue-key>") and statusCategory != done
This will provide all child issues of a parent that are not done
If you want to find all parents and child based on your required combinations, you will require a 3rd party app from the marketplace to extend you JQL options.
Hello @Mathew Lederman ,
I'm Cristiano, with the Appfire team here,
if your only concern is to build filter, then the app our team works, JQL Search Extensions, will still help with that.
First the queries:
1.
issues in parentsOfIssuesInQuery("project='Wano' AND (issuetype = sub-task AND status = Done )") AND status != "Done"
2.
issue in subtasksOfParentsInQuery("Project='Wano' AND status='Done'") and status!='Done'
The main difference from native Jira is that these queries, from within the JQLSE app are dynamic. And as I said before, after searching from within the app, you are able to save the custom query as a filter and use it elsewhere with the:
filter=<filter name>
Feel free to contact our support team if you need help setting this up, or any further question about the app.
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.