Hello.
I'm looking to create a JQL to find all issues in a project that changed from one status to another during the last week (without defining specific dates).
I came up with this
project = "ABC" AND type = "CDE" AND status changed from (deployed) to (closed) during (startOfWeek(-1),endOfWeek(-1)) ORDER BY updated ASC
but for some reason it shows me issues that changed status even today.
Any ideas on why would this be happening?
Thanks in advance!