I'm trying to put together a query that will pull all the JIRA tickets that were put into a status of Dev Complete during the previous month for our KPIs (e.g. it's now October, I want to see the ones that were marked Dev complete for September).
I have come up with the following query, which meets the syntax requirements, but does not return data:
status changed to "Dev Complete" AFTER startOfMonth(-1m) BEFORE endOfMonth(-1m) AND assignee in (wilanv) ORDER BY created DESC
The problem here is that your syntax isn't actually looking back -1 month, but rather -1 minute. The 'm' in JQL is in reference to minutes, not months. But within those startOfMonths functions, you don't need the m at all. Instead try using just
status changed to "Dev Complete" AFTER startOfMonth(-1) BEFORE endOfMonth(-1) AND assignee in (wilanv) ORDER BY created DESC
In order to see the issues transitioned to that status by that user last month.
Thank you! that worked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try the keyword "during"
Hope this helps
Regards
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.