Hello All,
I have a Filter that shows all Epics with Fix Version XYZ, (filter=123456)
I want to show all of the tasks related to those Epics.
Is this possible?
Queries I have tried
IssueFunction in linkedIssuesOf("filter=123456"), This shows me all the linked issues.
Issuetype in (standardIssueTypes()) AND filter = 123456, This shows all me only the Epics
Thanks!
@Craig Nodwell Thank you for looking into this
@Jorge Martinez Thank you! I haven't used ScriptRunner yet! I'll look into do it that way
We got it to work using this!!
issuefunction in issuesInEpics("filter = 123456")
For any one looking to use this we are using Jira Server
Sorry I can't test but maybe something like the below.
issueType = Task AND IssueFunction in linkedIssuesOf("filter=123456", "has Epic")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could do that through ScriptRunner Enhanced Search
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.