How can i use "change by" in JQL to include JIRA group?
Current query is as under: project = ITOPS and created >= '2022-06-01' and created <= '2022-06-22' and assignee was in (All assignee group) and assignee changed by (Here I would like to include members of particular asignee group)
Please advise
Hi,
Does this part of JQL meet the need?
assignee changed by membersOf("jira-administrators")
Kind regards,
Morgan
Hi @Pankaj Gupta -- Welcome to the Atlassian Community!
I do not believe that is possible with out-of-the-box JQL features.
CHANGED BY user only accepts one value, and so your work-around would be to add a bunch of OR clauses, listing each user:
... AND ( CHANGED BY user1 OR CHANGED BY user2 OR... )
Or you could investigate marketplace apps to enhance JQL functions.
Kind regards,
Bill
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.