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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.