/
issuesInBacklog
issuesInBacklog
Description
Retrieves the issues or tasks located in the backlog, which is a list of work items awaiting prioritization and planning.
Parameters
Return Type
String []
Array of issue keys. All the issues in a backlog.
Examples
Example 1
Gets all issues in the backlog.
string [] issues = issuesInBacklog(12345);
for(string i in issues) {
runnerLog(i);
}
Example 2
Gets all issues in the backlog that are Bugs.
string [] bugs = issuesInBacklog(12345, "type=Bug");
for(string b in bugs) {
runnerLog(b);
}
See also
Peacock
, multiple selections available,
Related content
issueInBacklog
issueInBacklog
More like this
issueInBacklog
issueInBacklog
More like this
issueInBacklog
issueInBacklog
More like this
moveIssuesToBacklog
moveIssuesToBacklog
More like this
issuesWithoutEpics
issuesWithoutEpics
More like this
issuesInBoard
issuesInBoard
More like this
Need support? Create a request with our support team.
Copyright © 2005 - 2025 Appfire | All rights reserved.