I need some assistance writing a JQL query that needs to query the issues (i.e. Bugs, Stories) in my projects Active Sprints, Future Sprints and the backlogged items.
The issue I have encountered is getting the backlogged issues to show up in the query without have issues from closed sprints showing up.
the query I have right now (below) shows all issues in my project from all sprints, open, future and closed, as well as the backlogged issues.
"project = GLOB AND issuetype in (Bug, Story) ORDER BY created DESC"
Any suggestions for what I need to modify to get the query ti just display the issues from the active sprint, the future sprints, and the backlogged issue list?