How do I filter subtasks of a story

Meredith Sapp
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 12, 2013

looking to see if anyone knows how to get subtasks of a story. I am filtering stories based on an assignee. Based on those stories I need to see the subtasks within those stories - which are not assigned to that assignee. I can't figure out based on the commands how to do that- it will be dynamic since the assignee will consistenly be assigned stories and additional subtasks will be added to their stories.

1 answer

0 votes
Barbara Boros
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 7, 2015

JQL with ScriptRunner enabled:

assignee != CurrentUser() AND issueFunction in subtasksOf("issuetype = Story AND assignee = CurrentUser()")

CurrentUser() returns the user who runs the JQL but can be replaced with any username.

Suggest an answer

Log in or Sign up to answer