You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I tried to use the operators ">" , "~" but got error saying that these operators are not supported.
I tried also to filter according to Sprint name using Sprint = or Sprint "~" but didn't get the required result
JIRA Version : V7.9.0
Hi Gali F
To find issues from a specific sprint, you have to add one of the following to your JQL query:
sprint = ID
sprint in (1,3,4)
You have other sprint related functions like opensprints() , Closedsprints() .
If you have Adaptivist scriptrunner in your instance then you get a lot issueFunction for powerful searching with respect to sprint start date etc.
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_agile
Regards
Prakhar
Thanks Prakhar .
In need to filter all sprints that starts after YYYY-MM-DD
or
All sprint with Sprint name that starts / includes specific string....
Thanks,
Gali
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah the Adaptivist query functions don't allow you to access the "Sprint.Start_Date" or "Sprint.End_Date"(I know those are not the specific names of the fields, but you get the idea)
what would really be useful is something like this
issueFunctionOf(sprint in closedSprints() and Sprint.Start_Date >= X and Sprint.End_Date <= Y)
That way you could capture items for Sprints that closed between 2 different dates.
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.