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,557,782
Community Members
 
Community Events
184
Community Groups

Scriptrunner omitting linked issue type in linkedIssuesOfAllRecursive

Edited

I am attempting to create a scripted field using a JQL Search.

 

Using the scriptrunner linkedIssuesOfAllRecursive I can find all linked issues for any task or subtask.

 

The issue I am having is when I get to release issues, which can be linked to multiple tasks and from there they get to more User Requests.  How can I omit the 'is released by' link type from my recursive linked issues search?

import com.atlassian.jira.bc.issue.search.SearchService
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.web.bean.PagerFilter
import groovy.xml.MarkupBuilder

def writer = new StringWriter()
def xml = new MarkupBuilder(writer)
def user = ComponentAccessor.jiraAuthenticationContext.getLoggedInUser()
def issueMgr = ComponentAccessor.getComponent(IssueManager.class)

String jqlSearch = "(issueFunction in linkedIssuesOfAllRecursive(\"key=" + issue.getKey() + "\", \"clones\") or issueFunction in linkedIssuesOfAllRecursive(\"key=" + issue.getKey() + "\", \"is cloned by\")) and project = \"User Requests\" "
SearchService searchService = ComponentAccessor.getComponent(SearchService.class)

SearchService.ParseResult parseResult = searchService.parseQuery(user, jqlSearch)
if (parseResult.isValid()) {

def searchResult = searchService.search(user, parseResult.getQuery(), PagerFilter.getUnlimitedFilter())

def issues = searchResult.issues.collect {issueMgr.getIssueObject(it.id)}

xml.table(id:"scriptField"){

issues.each{ issueLink ->

def linkedIssue = ((Issue) issueLink)
tr{
td{ a(href:"" + linkedIssue.key.toString(), linkedIssue.key.toString()) }
}
}
}

return (writer.toString())
}

Edit:

The original code did not utilize 'clones' or 'is cloned by', this fails when I have an issue that is a subtask, or an issue that has an epic that has a linked user request.

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events