You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello,
I need to find all issues in "Ready for development" for each of the last weeks(Saturday). for e.g. end of last week, 2 weeks ago, 3 weeks ago.
here is a sample query I've written, need help to see if my understanding is correct
project = X AND issuetype in (Bug, Defect, Spike, Story, "Technical Chore") AND status was "Ready for Development" ON endOfWeek(-1) ORDER BY created DESC
I'm assuming the above query will give me all the issues which were in "Ready for Development" status last Saturday (by default, the last day is Saturday)
if correct, I'll keep changing the increment e.g. endOfWeek(-1), endOfWeek(-2), endOfWeek(-3), etc. to get results from past weeks.
Please let me know if my understanding is correct here.
Thanks in Advance.
Hi @Romel
Yes the query you have written is correct!!
It will return the results based on the weeks parameter you specify till date
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.