Trying to understand what data is pulled when using OpenSprint(). Does it pull everything that is not in an active sprint (both future and past?)
Hi @Robert Andrew Suther , welcome to the community!
Open sprints mean the same thing as active sprints - so this pulls in issues that are in a currently active sprint, and will ignore everything that's only in future sprints/sprints in the past
I've seen SR used to alias activeSprints() aliased on to openSprints() so the users could remember!
You can also use completedSprints(), and futureSprints() (defined in the backlog, but not started),
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Adding to these replies...
For sprints that have already been completed the function closedSprints() is used and for sprints that have been created but not yet started the function futureSprints() is used.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Lets say something got slotted into a past sprint as was not finished (marked as done) ...
How might I pull pall unresolved issues that are not slotted for a future sprint, basically telling me whats still in the backlog thats not resolved and not slotted for a future sprint?
would this work?
project = PSO AND resolution in (Unresolved) AND Sprint not in (futureSprints()) ORDER BY resolution ASC, lastViewed DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.