I'm trying to create a filter to show only open stories in an active sprint and the subtasks under the stories. I have "issuetype = Story AND status not in (Done,Resolved)" which works fine, but does not show the subtasks attached to the story. When I try to 'issueFilter = subtask' I get an error.
Was able to solve it by making the JQL simple:
status != Done
Be careful with this method. You really should be using Resolution is not empty. Resolution should always be set when transitioning to any ‘Done category status’ and cleared if ever reopened.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The fact that you have declared issuetype = story will exclude sub tasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use something like that if you are okey with explicitly listing story keys.
(issuetype = Story AND status not in (Done, Resolved)) OR (parent in (STORY-1, STORY-2, STORY-3, ....) AND status not in (Done, Resolved))
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.