The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get task linked with epics through jql?

Swarna Radha
Contributor
August 9, 2018

Hi,

I want to do a filter to get task linked with epics through jql.

 

Thanks

Swarna

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

2 votes
Alexey Matveev
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 Champions.
August 9, 2018

Hello,

There is a JQL funciton in the out of the box Jira called

linkedIssues(issueKey)
https://confluence.atlassian.com/jiracorecloud/advanced-searching-functions-reference-765593719.html

You would need to provide an issue key for this function, that is why it is not too much flexible. But if it fulfils your requirements, then you can use it.

If you want a more flexible solution you would need a plugin for it. For example, you can use the JQL Extensions for Jira:

https://marketplace.atlassian.com/apps/1214791/jql-search-extensions-for-jira?hosting=cloud&tab=overview

Your JQL query would look like this:

issue in allIssuesInEpic("fixVersion = 1.0 AND project = SEARCH")

The advantage is that you can select required epics by a JQL query. You do not have to provide an issue key.

You can find more info here:

https://jqlsearchextensions.atlassian.net/wiki/spaces/SEARCH/pages/30497099/JQL+Reference+Server#JQLReference(Server)-AllIssuesInEpic(jql-queryorissuekey)