I have a very specific JQL i’m trying to mimic a JQL filter for Eazybi for Jira.
Here’s a redacted version of the JQL. i have tried to review a few things, but not getting anywhere.
project="%PROJECT%" AND
type = “Problem”
and
(status != Closed or (resolved > startOfWeek(-6d) AND resolved < startOfWeek(1d) and status = closed)) AND
( labels not in ("%SOMELABEL%") or labels is empty)
AND Products not in ("%XXYY%")
order by STATUS,CREATED ASC
the start of week is currently used as well pull the report on a Monday for last week’s tickets. If there’s a different way to accomplish that in eazbi, that’s fine!