Is there is a filter I could use (a filter) to extract all the Epics, Stories and Tasks which are under "Project B" where "Epic A1" in "Project A" is an Initiative Epic for latest version of Jira
There are third-party add-ons providing advanced JQL features. For example, JQL Tricks add-on provides 'issueFunction' feature which is capable of nesting JQL into subqueries.
With JQL Tricks you can do something like this:
project = B AND type = Epic AND issue in linkedIssues (A-1) OR project = B AND issueFunction in linkedIssuesOfAll ("type = Epic AND issue in linkedIssues (A-1)")
Without nested queries I don't think this is possible.
--
Shaakunthala
Thank you Shakuntha through forum and support behind the scene. Using
linkedIssuesOfAllRecursiveLimited("issueFunction in linkedIssuesOfRecursive('issue = A-1') AND labels in (XX, YY)",2) and sprint in openSprints () AND labels in (XX, YY)
Worked finally...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.