Scriptrunner - Get all Issues in Sprint

IT Frastanz October 12, 2021

Hello there,

is it possible to get all Issues in a sprint with scriptrunner? I build a listener that checks all issues in a sprint after the sprint finished and change values of some fields, but I get an error when i try to get all issues.

Error line:

def Tasks = issues.getTaskObjects()

 

Thanks,

it-frastanz

1 answer

1 accepted

0 votes
Answer accepted
IT Frastanz October 18, 2021

Found the solution myself, find the code below.

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.bc.issue.search.SearchService
import com.atlassian.jira.jql.parser.JqlQueryParser
import com.atlassian.jira.web.bean.PagerFilter
import com.atlassian.jira.issue.search.SearchQuery
def user = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def jqlQueryParser = ComponentAccessor.getComponent(JqlQueryParser)
def searchService = ComponentAccessor.getComponent(SearchService)
def jqlSearch = "project = YOURPROJECT and Sprint in openSprints()"
def query = jqlQueryParser.parseQuery(jqlSearch)
def results = searchService .search(user,query, PagerFilter.getUnlimitedFilter())
results.getResults()

Suggest an answer

Log in or Sign up to answer