I need to have a list of all Features that have all their linked issues listed under them.
I have my filter to grab all the Features.
"Team Name" =BEES AND cf[37500] = "PI 2024" AND type = Feature ORDER BY summary ASC
I just don't know how to get the issues that are all linked to these.
I can't use any plugins.
Can anyone please help me?
If you can't user any plugins that make things complicated since OOTB there is no easy option to pass results of the filter and use this as a base for checking something else ..
Finding linked issues itself of course is possible but only when you pass individual tickets keys for example we have linkedissue() or linkedissues() functions with below syntax
linkedissue = issueKey
e.g.
linkedissue = FEATURE-567
or
linkedIssues(issueKey)
linkedIssues(issueKey,CaseSensitiveLinkType)
linkedIssues(issueKey,CaseSensitiveLinkType, CaseSensitiveLinkType)
e.g.
issue in linkedIssues(FEATURE-567)
issue in linkedIssues(FEATURE-567,"is duplicated by", "is blocked by")
but as you see we cannot make this triggered by list of all features (you have to pass exactly issue key)
That definitively would be useful. There is an similar open suggestion that you can watch and vote
Hi @Mirek
Thank you so much for your feedback. I was afraid of that. We have 14 Features with multiple Stories linked to each of them.
I appreciate you.
Thanks.
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.