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.
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.