I want my query to show all issues that are either open now or were closed within the last x number of days. Essentially, tickets closed more than x days ago will "fall off" the board/query. Here is what I have:
project = FUS AND (resolved >= -1d OR status != "Resolved") ORDER BY cf[10011] ASC, created DESC
Unfortunately I'm still seeing tickets I closed more than 1 day ago. What am I doing wrong?
p.s. ">= -1d" was generated by the simple query. I also tried "<= 1d" and get the same results.