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?
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?
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
Yeay! Worked. Thanks. Did not know the parent field, could not find it in the documentation. – eddy147 – 2011-08-11T10:41:36.913