Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 5
Next »
Example Usage (JQL query)
key in silJQLList("silJql_FieldValueDosentMatchEpic.sil", "Project = EX and type = Epic", "Fruit")
Script
string [] epics = selectIssues(argv[0]);
string matchField = argv[1];
string [] ret;
for(string e in epics) {
for(string i in allLinkedIssues(e, "Epic-Story Link")) {
if(%i%.%matchField% != %e%.%matchField%) {
ret += i;
}
}
}
return ret;