Forums

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

JQL - Return all issues assigned to an epic with a particular "Fix Version"

Nick
Contributor
February 15, 2023

Hi,

I am trying to run a query so that my swimlane in my Kanban board displays the issues ("Story", "Task") for a given "Epic", WHERE the parent "Epic" contains a specific "Fix version"

Does this make sense and can anyone help?

Thanks,

Nick

1 answer

1 accepted

1 vote
Answer accepted
Barnali Putatunda
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.
February 15, 2023

Hi Nick,

In this case your swimlane is based on queries & the JQL would look something like this:

Issues under specific epic:
issuetype in ("Story", "Task") and "Epic Link" = <epic key> 

Issues under epic of specific version (you would need some app like Scriptrunner to ruhn some advanced query) like:
issuetype in ("Story", "Task") and issueFunction in issuesInEpics("project = xxxx AND fixversion = <V-xxxx>")

I hope it helps!

Regards,
Barnali

Nick
Contributor
February 15, 2023

Thanks for your help, although I am surprised that Jira doesn't support what I would have considered a fairly basic query.. :\

Suggest an answer

Log in or Sign up to answer