Stories with All Linked Issues Done Query

Mauro Da Silva February 9, 2017

Hi,

I'm trying to create a query using ScriptRunner to find me all the stories that have linked issues where every linked issue status is done.

What I have managed to get working is that it will return the stories if one linked issue is done, but I need it to only return if all the linked issues are done. This is what I have so far:

 

project = "Project" AND issuetype = "Story" AND issuefunction in hasLinks("tests") AND issueFunction in linkedIssuesOf("status = Done")

I'm struggling to get this to work, so any help would be greatly appreciated.

 

1 answer

2 votes
Alina Fecheta
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 10, 2017

Hello.

Just change the last part to:

AND issueFunction NOT  in linkedIssuesOf("status != Done")

so no issues with links to non-closed issues will be returned.

Suggest an answer

Log in or Sign up to answer