JIRA: create filter with a common story

2

I want to create a filter to select all unassigned issues which are a subtask of story "Some Story".

How can I do that?

eddy147

Posted 2011-08-08T14:17:55.577

Reputation: 143

Answers

1

You will need to know the ID of "Some story", let's call it SS-10. You can then use an issue filter like this:

parent = SS-10 AND assignee IS EMPTY

If you need any further filtering, you can just add "AND" clauses on the end, like this:

parent = SS-10 AND assignee IS EMPTY AND issuetype = Sub-task

Mark McDonald

Posted 2011-08-08T14:17:55.577

Reputation: 772

Yeay! Worked. Thanks. Did not know the parent field, could not find it in the documentation. – eddy147 – 2011-08-11T10:41:36.913