Hello,
I’m having trouble with a JQL query. I’m trying to setup a Confluence page to return issues that were completed in the last month (which I’m willing to define as 30 days since it doesn’t seem like JQL has a months capability). To that end, my JQL statement is:
project="XX" AND status CHANGED TO "Done" AFTER -30d
but this consistently returns zero results, even though I have an issue that qualifies. If I remove the TO criterion like this:
project="XX" AND status CHANGED AFTER -30d
it seems to work. If I try:
project="XX" AND status CHANGED TO "Done"
it also fails to return any results. Oddly enough, that last queries fails to return any results for any status other than "To Do", and even that one only returns my Epics for some odd reason. What am I doing wrong?
Note that this is a next-gen Jira project, if that matters.