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:
You can find issues in the current open sprint with the JQL clause:
sprint in openSprints()