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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.