We have stories with often 5-7 tasks associated, and from 1 or 2 of those tasks, we have bugs cross linked to other projects.
for Example:
PRD-1 (Story)
PRD-2 (Task - linked to PRD-1)
Linked to JOB-1, JOB-10, JOB-47. (Because Task PRD-2 was to make more work for JOB team)
I'd like to make a report that allows me to use my filter which is defined as "IssueType = Story"
project=PRD and linkedIssue in linkedIssues("PRD-1")
works - but is limited as I have 50 of those things I'd like to view.
But my search:
project = PRD and linkedIssue in linkedIssues("IssueType = Story")
Fails.
As does
project = PRD and linkedIssue in linkedIssues(Filter = My50Filter)
project = PRD and linkedIssue in linkedIssues("Filter = My50Filter")
All error out with "Issue 'Whatever in parens' could not be found in function...
Would appreciate any help!