Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
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;

...

Filter to display all issue where parent epic has field with value x?

...

Filter on number of fulfilled criteria

...

Get issues in epic that don't match field value

...

Return All Issues Linked to Issue for Given Link Type

...