I need a JQL query so i can create a filter which will pull issues scheduled for the CURRENT Mon-Fri calendar week.
I've found the below query which works and pulls the LAST calendar week info of issues done for a particular team/board (NewsDNA Commercial Design):
project = "NewsDNA Commercial Design" AND resolved >= startOfWeek(-1) AND resolved < endOfWeek(-1)
But I also need one which will pull the CURRENT week's info. To clarify - the current week info can capture all resolved or active issues to be done/that are scheduled in for the week (so not just resolved or completed items).
HELP PLEASE!!