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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,555,977
Community Members
 
Community Events
184
Community Groups

Get count of Epics linked to respective Feature

Edited

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

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.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events