Hello Fellow Jirers,
tried to find a hint on my question in the forum & docs, but to no avail.
I am trying to filter the below conditions - the filtering results should show the tickets that are:
The goal of this filter is to check the progress on throughput of 3 different queues of issues - we are setting maximum limit on actionning upon specific queues weekly and try to find out a way to track and monitor those ticket limits throughut the week.
I was trying to use the below query:
assignee in (membersOf(groupX)) AND updatedDate = startOfWeek(0) ORDER BY createdDate ASC
but it shows false results + it does not account that the update made in the ticket is done by the user of the assignee group.
I would appreciate some hints on where do I get this JQL wrong.
Thanks a lot in advance!
Marta
Hello Marta,
If you want to see a particular user or member of a group made an update, you will need to use the "changed by" operator, unfortunetaly it only work with the fields below :
Priority, Reporter, Resolution, Assignee, Fix Version and Status
So your query will looks like :
assignee in (membersOf(groupX)) AND status changed by memberof(your_group_name) and updated >= startOfWeek(0) and updated<= endofweek() ORDER BY createdDate ASC
hope this helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.