I am trying to make a JQL query to get a list of anomalies assigned to a specific team,
there are two type of team names on our train. Currently the queries return nothing for those teams. I know for fact these two example teams (purple and Red team) have anomalies assigned to them in Jira. What am I missing?
issuetype in (Anomaly) AND status NOT in (closed) AND team in (Purple)
issuetype in (Anomaly) AND status NOT in (closed) AND team in ('[LART]' RedTeam)
I modified the working query I had below for a custom label our teams created and replaced labels field with the team field, and Deferral_candidate_V35 label with team name. It should work but didn't.
issuetype in (Anomaly) AND status NOT in (closed) AND labels IN (Deferral_Candidate_V35)
can you try with below query.
issuetype in (Anomaly) AND status NOT in (closed) AND assignee in membersOf("your group name")
thanks for the suggestion. I did get it working by using Jira ID for the team. The JQL query didnt like the team name.
This worked
issuetype in (Anomaly) AND status NOT in (closed) AND team in (TeamID#inJira)
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.