Used the search function found nothing related:
Big company, lots of Sagas with several Epics.
Viewing the saga in the item view shows me the Epics, opening an Epic in the item view shows me all the related User stories and their status.
I need a view where I get all of that - so one can see the saga and then (ideally structured in their Epic distinction, but not mandatory) all related user stories. Is that possible via a JQL or do I have to work with Labels or another workaround?
Thx for your help!
Hello @Herbert Gozambo
This is possible but using plugin.
The JQL function I use for searching across hierarchy comes from the script runner plugin
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html
And to see the details of linked Issues in the issue navigator view comes from custom field pack plugin.
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_portfolio
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_epicsof
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_issuesinepics
The company is not very flexible regarding plugins. I doubt that this is possible just for my single need - but thx for your answer, anyway.
Supplement: The plugin seems to be present.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Herbert Gozambo
Without plugin only easy built-in option is below
issuekey in childIssuesOf("EX-000")
This will fetch all child issues of the "saga", the only caveat being that you need to hard-code the issue key of saga and it's not dynamic
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.