I was to write a JIRA filter to see all the issues that belongs to QA in currentSprint
My current query looks like following, but I only want the tasks that belong to QA meaning where Task Options field of a Task issueType is either "QA General" or "Automation Task"
Query:
project = XYZ AND issuetype in ("New Feature","Production Defect",Task) and "Team Name" = "ABC"AND Sprint in openSprints()
Does this work?
project = XYZ AND "Team Name" = "ABC" AND Sprint in openSprints() AND (issuetype in ("New Feature", "Production Defect") OR (issuetype = Task AND "Task Options" IN ("QA General", "Automation Task")))
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.