Hi,
I want to list all child issues assigned to a certain team. Is this possible? Is it possible with scriptrunner plugin?
As step 2 I want to list parents who has child issues assigned to certain team, to create a KanBan board with Team swimlanes.
Any help appreciated!
/David
I found a solution, thought I'd share if anyone else has the same need.
Using the plugin "JQL Search Extensions" (not affiliated in any way) and the following filter did the trick for me:
issue in parentsOfIssuesInQuery("issuetype = Epic and Team = 10")
If anyone has an alternative without using a plugin please share.
Hi @David
Welcome to the community.
Have a read of this, it should provide the answers:
Solved: JQL Child issues of initiative (atlassian.com)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for sharing Curt!
Unfortunately the provided solutions don't work on cloud. Got some ideas from it though, so I will keep investigating and share any results here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try something like this @David
issue in portfolioChildIssuesOf(ABC-123)and "Team[Team]" = 123
I'm on cloud and it works for me...no extension required.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes you're right it works. Will only list child issues of one Initiative though. Also useful, and for now probably the best you can do without any plugins, however not solving my need completely, since I want to list all Initiatives related to a Team.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how are you getting issues for Team to appear at all? We have a new instance and only several teams, if I search for Team = 4 I get nothing, when there is tons of data.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jane Brock I think the suggested JQL will actually be something like "Team[Team]" = 4.
Apart from that I think you'd better file a support question, to have a better chance of getting help than in this old thread :)
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.