Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Get count of Epics linked to respective Feature

Ramya Yarru January 5, 2021

Hello,

I need to get count of Epics linked to respective Feature mapped to a custom field using scriptrunner, any suggestions or any help would be appreciated.

1 answer

Suggest an answer

Log in or Sign up to answer
1 vote
Putri Nur Dayana Kamarudin January 18, 2021

Hi Ramya!

This script will display the number of issues that are in an epic : (i.e. that have Epic links):

import com.atlassian.jira.component.ComponentAccessor

//Check that the issue is an Epicif(issue.issueType.name == "Epic")
{
    //Grab necessary components/managers    def issueLinkManager = ComponentAccessor.issueLinkManager

    //Get the inward links of the issue    def inwardLinks = issueLinkManager.getOutwardLinks(issue.id)
    def count = 0

    //Loop through all of the links, checking for Epic links    inwardLinks.each {
        if(it.issueLinkType.name == "Epic-Story Link")
        {
            //Add to count when inward link is an Epic link            count+=1
        }
    }

    return count as int
}

For this Script field, you need to ensure that the template and searcher that you are using are for a Number Field. 

Also, this might be possible via ScriptRunner's JQL, this community post might be helpful : https://community.atlassian.com/t5/Jira-questions/Query-Showing-epics-linked-to-features-in-a-different-project/qaq-p/1446689

Hope this helps.

TAGS
AUG Leaders

Atlassian Community Events