Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.