I am tyring to write a query that includes the work in open sprints, but excludes the work assigned to the very next sprint to become active.
This is the feedback I keep getting in research shows me this query, but the results returns the next sprint to become active:
project = "myproject" AND sprint in futureSprints() and sprint not in closedSprints()
Hi @Karri Adkins,
If you want the issues in currently active sprints, you would need the following:
project = MyProject AND sprint in openSprints()
Just that. Sprint in futureSprints() does exactly what you say you don't want in the result: issues assigned to sprints that have not started yet.
Hope this helps!
To clarify further. A team that plans two sprints ahead. With that you have:
One of those sprints however, is the next sprint to start.
I need a query that identifies the work in all those sprints except the "active" sprint, and the sprint next to start without having to continuosly alter it in some way.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.