Include Page |
---|
Search for all issues associated with multiple epics | Search for all issues associated with multiple epics | Html bobswift |
---|
<iframe width="560" height="315" src="https://www.youtube.com/embed/oxDtkgKjyrE" frameborder="0" gesture="media" allowfullscreen></iframe> |
Example (JQL query)
Code Block |
---|
key in silJQLList("silJql_IssuesInEpics.sil", "Project = EX and type = Epic") |
Script
Code Block |
---|
string [] epics = selectIssues(argv[0]);
string [] ret;
for(string e in epics) {
ret += allLinkedIssues(e, "Epic-Story Link");
}
return ret; |