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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Ive got quite a big query which I'm using to determine tickets that need to be looked at in backlog refinement (either new or over 28 days since we last looked at them). What I'm trying to find is:
So individually I have these queries:
Tickets that have no priority and are not in the current or a future sprint
project = AEA AND issuetype = Story AND status not in (Done, Closed) AND priority = "Not Set" AND sprint NOT IN (openSprints(), futureSprints())
Tickets that have no previous review date and are not in the current or a future sprint
project = AEA AND issuetype = Story AND status not in (Done, Closed) AND "Priority Last Reviewed Date" = EMPTY AND sprint NOT IN (openSprints(), futureSprints())
Tickets that have a previous review date over 28 days ago and are not in the current or a future sprint
project = AEA AND issuetype = Story AND status not in (Done, Closed) AND "Priority Last Reviewed Date" >= -28d AND sprint NOT IN (openSprints(), futureSprints())
Im pretty sure its a problem with how im using "(openSprints(), futureSprints())" because when I drop this off it brings back the entire contents of my board, when I add this it drops loads of items including ones that are in the backlog. Any thoughts would be really appreciated!
Ive solved my own problem "(openSprints(), futureSprints())" only pulls back issues that have a sprint, so if the sprint field is empty it doesnt find them so "(Sprint = EMPTY OR Sprint not in (openSprints(), futureSprints()))" worked!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.