I would like to filter all the stories that have incorrect status
For Example :
I have my sub-tasks are closed and story status is not updated by my team and it remain in "In-progress"
I would like to identify those stories using JQL. Let me know if we have any query for it ?
If I am understanding correctly, you want to find Stories where Sub Tasks are closed. You can use script runner JQL function 'parentsOf'
Ex. issueFunction in parentsOf("status=closed")
OR
issueFunction in parentsOf("project = JRA and status not in Open")
I assume '!' will work for the query. I referred it from here https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_parentsof
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Seems like difficult to find parent issue where all sub tasks are closed. But you can find parent issue where at least one sub task is closed with this query.
issueFunction in parentsOf("status not in ('To Do','In Progress',Open,Reopened)")
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.