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!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.