I am not able to use the inSprint() JQL function. It is not listed in the module list of the ScriptRunner plug-in and therefore I cannot enable it. I have the latest version of the plugin, i.e. 3.0.16.
Try with "Sprint in ...", here you can use several functions (openSprints, closedSprints, futureSprints)
I need inSprint() because I need to query for the issues in the backlog.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What do you mean with "query for the issues in the backlog" ? Something like resolution is EMPTY AND Sprint not in openSprints() AND Sprint not in futureSprints() should do ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I need to get a list of issues in the Backlog of an Agile Board. I have tried many different combinations and can't seem to get the correct issues returned. The one you suggested returns half of the issues on the backlog.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, i forgot the issues that where never linked to a Sprint. Also you have to complete the filter somewhat (ecluding subtask issues, Epics). At my side, this gives exactly the issues in the backlog of a board: resolution is EMPTY AND ((Sprint not in openSprints() AND Sprint not in futureSprints()) OR Sprint is EMPTY) and issuetype not in subTaskIssueTypes() and issuetype != Epic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We ran into a similar problem trying to show only epics related to issues that appeared in a RapidBoard's backlog, current or future sprints. To do this we used Jamie Echlin's script runner plugin and the following RapidBoard query:
Simple Rapid Board based on single project:
project = "My Project" or issueFunction in linkedIssuesOf(" project = 'My Project' and (sprint is empty or Sprint in (opensprints(), futuresprints()))", "has Epic") order by Rank ASC
'Complex' RapidBoard based on multiple projects
filter="Complex RapidBoard Filter" or issueFunction in linkedIssuesOf("filter='Complex RapidBoard Filter' and (sprint is empty or Sprint in (opensprints(), futuresprints()))", "has Epic") order by Rank ASC
This approach allows us to utilize the same rapid board filter syntax (changing the project name) and only shows the Epics that are associated with issues which are in the backlog, a future sprint, or a current sprint.
Note that applying this filter to a RapidBoard that was built automatically by JIRA Agile for a single project could result in displaying fewer Epics than the Board shows now - this is because the Epics which do not appear are not associated with any issues in your Board's backlog or current/future sprints.
Hope that helps someone.
-wc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline 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.