I'm trying to use JQL, and Script Runner functions, to construct filters which give me a list of issues (typically stories) in a project which have a link (or links) to other issues where the linked issues are unresolved.
It's the last bit I'm struggling with. I can get the list of stories which have links easily enough with:
project = KBP AND issuetype = Story AND issueFunction in hasLinks("is blocked by")
but this shows me all stories which have that link relationship irrespective of whether or not the linked issue has been resolved.
And, of course, adding
AND resolution = Unresolved
simply selects the unresolved issues in the returned filter, rather than the issues with unresolved *linked* issues.
Any advice?
Hi Kevin,
this should do it:
project = KBP and issuetype = Story AND issueFunction in linkedIssuesOf("resolution = unresolved", "blocks")
Thomas
Thomas, thanks. Your query wasn't quite right but gave me enough to find the solution.
The link relationship I needed was "blocks", because in my project the linked issues block completion of the stories (rather than the other way around). Thus:
project = KBP and issuetype = Story AND issueFunction in linkedIssuesOf("resolution = unresolved", "blocks")
to find the stories which have linked issues which are unresolved.
Of course, I can now also create a filter which finds the stories which are no longer blocked by linked issues:
project = KBP and issuetype = Story AND issueFunction in linkedIssuesOf("resolution != unresolved", "blocks")
Thanks for the help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you're welcome
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Slight issue with the second filter:
project = KBP and issuetype = Story AND issueFunction in linkedIssuesOf("resolution != unresolved", "blocks")
If there is more than one linked issue which is blocking and not all are resolved, then story is included in the filter results. That's not the behaviour I expected, or want.
I want it to only return stories for which ALL linked blocking issues have been resolved. Any ideas?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Okay, I resolved my problem by adding a clause to make this tortuous query...
project = KBP AND issuetype = Story AND resolution = Unresolved AND (issueFunction in linkedIssuesOf("resolution != unresolved", blocks) ) AND NOT (issueFunction in linkedIssuesOf("resolution = unresolved", blocks) )
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.