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
Community moderators have prevented the ability to post new answers.
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()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.