The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

query epic

Shahar Shifman
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 9, 2016

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.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Peter Geshev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 9, 2016

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

TAGS
AUG Leaders

Atlassian Community Events