We use corkboard with printed Agile Cards. I would like to be able to create filter in JIRA's Issue Navigator to find issues that were added to the active sprint in the last 24 hours, last 2 days, etc. That way I wouldn't have to manually select new issues for printing everyday.
I've tried to write JQL query for this, but I only got this far:
project = "Our Project"
AND sprint = 1002
AND (created >= -1d OR (updated >= -1d AND status WAS Open BEFORE -1d))
This is not satisfying because:
- Sprint id isn't automatically selected (activeSprint() or something similar).
- Query doesn't actually answer my question.
WAS
,WAS NOT
, ...) to work with theSprint
field. Here's the link, in case you want to upvote it. – Goulet