We use a separate project in Jira to track defects. These defects are linked to the original issue, from the original project, with "Affects Test Execution Of". I want to be able to filter these defects based on a handful of epic links from the originating issue.
Project = "CXT - Defect Tracker" AND issueFunction in linkedIssuesOf("resolution = unresolved", "Affects Test Execution of") AND issueFunction in linkedIssuesOf("Epic Link in (VZWCS-6402, VZWCS-6028, VZWCS-7238, VZWCS-6029, VZWCS-5832, VZWCS-5833)", "Affects Test Execution of") AND resolution = Unresolved ORDER BY key ASC
Using that query I get the error
What's the issue?
Hi @Matthew Knouff,
the problem could be in Epic Link field - it should be in quotation marks.
Try this:
Project = "CXT - Defect Tracker" AND issueFunction in linkedIssuesOf("resolution = unresolved", "Affects Test Execution of") AND issueFunction in linkedIssuesOf("'Epic Link' in (VZWCS-6402, VZWCS-6028, VZWCS-7238, VZWCS-6029, VZWCS-5832, VZWCS-5833)", "Affects Test Execution of") AND resolution = Unresolved ORDER BY key ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.