The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Scriptrunner - Get all Issues in Sprint

Deleted user
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Answer accepted
Deleted user
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()

DEPLOYMENT TYPE
SERVER
TAGS
AUG Leaders

Atlassian Community Events