I just installed ScriptRunner and I'm looking for a JQL filter for finding test case issues that are attached to a specific story through tasks. I'm not sure how to achieve this "parent.parent" type of connection check needed for this.
You have to use
linkedIssuesOf(Subquery, [link to testcases])
in the Subquery something like this
issuetype = Task and hasLinks([link to stories])
I tried something like this:
issueFunction in linkedIssuesOf('"issuetype = Task" and hasLinks("blocks")', 'tested by')
But it's giving me an error:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try like this
issueFunction in linkedIssuesOf("issuetype = Task and issueFunction in hasLinks(\"blocks\")", "tested by")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.