Hi All,
I would like to write a JQL to show only the sub tasks which are Done status and the parent story status is no Deployed.
Do we have any way to extract the sub tasks based on the parent story's status
Something like this;
SELECT ALL SUBTASK WHERE SUBTASK Status = DONE and( PARENT STORY(sub task) status = DEPLOYED )
Try this: issueFunction in subtasksOf("status = Done") and status != Done.
The results returned subtasks that are done, while their parent (story) is still in an open status. You can tweak to your specific status naming convention, as needed, if this works for you.
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.