It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi there,
Using SQL or JQL, how can i get a number that will give me the progress of an epic (counting on stories status - open or closed and upon their story points - to know the epic's progress in a more precise way).
Thanks alot in advance,
Shahar.
Hi Shahar,
The following SQL query lists all the stories of an epic and their story points value and status category
SELECT s."STATUSCATEGORY", cf.NUMBERVALUE, i.* FROM "JIRAISSUE" i JOIN "ISSUELINK" il ON il."LINKTYPE" = 10200 AND il."SOURCE" = 10000 AND il."DESTINATION" = i."ID" JOIN "ISSUESTATUS" s ON s."ID" = i."ISSUESTATUS" JOIN "CUSTOMFIELDVALUE" cf ON cf."ISSUE" = i."ID" AND cf.CUSTOMFIELD = 10006
Where 10006 is the id of the StoryPoints custom field, 10200 is the id of the Epic Story Link type and 10000 is the id of a specific epic. I leave the aggregation to you. However, if you don't wanna deal with sql and you are allowed to use REST calls see this thread
Regards,
Peter
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.