I am trying to retrieve issues (stories, subtasks) that were contained in Sprints that were closed between 2020-01-14 (Jan 14th 2020) and 2020-11-23 (Nov 23rd 2020). I don't see a field such as Sprint Closed Date available.
If it did exist, I could add a clause like this:
AND SprintClosedDate between 2020-01-14 and 2020-11-23
Can a JIRA query to do something like that?
you should be able to just simply use sprint not in opensprints() and resolutiondate between the dates that you want
Follow-ups question: What is the date format? CCYY-MM-DD?
In other words, would it look like this?
Sprint not in openSprints() AND (resolutiondate >= 2020-01-14 AND resolutiondate <= 2020-11-23)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sprint not in openSprints() and (resolutiondate >= 2020-01-14 AND resolutiondate <= 2020-11-23)
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.