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.
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.