Hello,
Can we add multiple JQL in a single query..?
Example:
I want to make a regular JQL which gives me the stories added after sprint has started, so I Tried with below JQL and it worked.!
project = <Project name> AND type != Sub-task and issueFunction in addedAfterSprintStart("board name", Sprint name)
BUT.. Instead of sprint name argument can I add the JQL -- Sprint in openSprints().?
Is there any way to achieve this need ?
@Sudarshan, if you skip the second argument 'Sprint name' all the active sprints on the board will be considered. is that solve your requirement?
correct, but my intention is to find all the issues added after a sprint has started.!
and I cannot remove the second argument as that is how the function is built.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can just use the 'board name' and skip the second argument. Did you try with just the board name? I use it without the sprint name as we use parallel sprints. This is a Scriptrunner JQL function, below is the documentation.
issueFunction in addedAfterSprintStart("Sample Scrum Board", "Sample Sprint 3")
Shows issues that were added to the named sprint (or all active sprints if second argument is not provided), after the sprint started. This is useful for seeing how the scope of a sprint has changed when the sprint is in progress.
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html
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.