Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I am trying to write a query that represents:
project in (xx, xxx) AND "Dev Team" = yy AND Sprint in (#, ##, ###) AND issuetype not in subTaskIssueTypes() AND (resolutiondate >= -30d OR status != Done)
I expected it to leave out of the query all issues closed over 30 days ago, but instead it includes all of them.
This posting did not provide the help I need https://community.atlassian.com/t5/Jira-questions/Query-to-show-open-issues-and-issues-closed-in-last-x-days/qaq-p/755434
Are you sure "Done" is the only status a resolved issue can be in? Perhaps you could instead try
... AND (resolutiondate >= -30d OR resolution is empty)
Your query is including all items with "Status != Done", this is due to the brackets you have around the last section of the query... "AND (resolutiondate >= -30d OR status != Done) "
Try this:
project in (xx, xxx) AND "Dev Team" = yy AND Sprint in (#, ##, ###) AND issuetype not in subTaskIssueTypes() AND (resolutiondate >= -30d OR resolution = unresolved)
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.