Show all tasks in an Filter

Melissa
Contributor
May 2, 2022

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

3 answers

1 accepted

3 votes
Answer accepted
Melissa
Contributor
May 2, 2022

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

1 vote
Craig Nodwell
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 2, 2022

Sorry I can't test but maybe something like the below.

issueType = Task AND IssueFunction in linkedIssuesOf("filter=123456", "has Epic")

0 votes
Jorge Martinez
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 2, 2022

You could do that through ScriptRunner Enhanced Search

image.png

Suggest an answer

Log in or Sign up to answer