Could someone please help me to figure out a filter that will allow me to see all parent issues in all projects that are closed but the subtasks are open?
Hello,
You would need an add-on for it. For example, you could use the Power Scripts add-on:
You could write the following JQL query:
key in hasSubtasks("status = Open") and status = Closed
Hi Alexey,
i tried with Power Scripts. The module hasSubtasks is enabled.
The query
project = "TEST" AND key in hasSubtasks("status = Backlog") and status = Done
does not find issues. But there are some.
Is there anything else I need?
Best regards
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Thomas!
You do not need something else. Could you paste a screenshot of an issue, which is in the TEST project, the status is Done and it has a subtask or subtasks, which are in the Backlog status?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then your JQL query should be
project = "ITSD" AND key in hasSubtasks("status = Backlog") and status = Done
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
interested in this query too
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am getting below error. How to resolve the issue
Unable to find JQL function 'parentsOf(project = "Project Management" AND status = Backlog)'.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Suresh_Kumar ,
If it's a one-off job you can always export the issues to a spreadsheet and do your analysis there.
Standard JQL doesn't easily allow it but the results can be quickly found using our professional indexing service JQL Search Extensions.
This query finds finished issues with unfinished subtasks.
issue in parentsOfSubtasksInQuery("resolution is empty") and status='Done'
I hope this helps!
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for letting me know. I got it and able to see the results with search extensions
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can smbd please help in writing JQL query filter for closed Story and Task but opened subtasks (statuses re-opened, blocked for development, code review, ready for retesting, testing) to find it quick?
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.