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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.