Skip to end of banner
Go to start of banner

Use a non-Boolean JQL function to filter based on multiple criteria

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 20 Current »

This script is used in silJQL to return a list of all issues that meet two or more criteria. This can’t be achieved by using the typical boolean operators in standard JQL.

Example usage (JQL query)

key in silJQLList("silJQL_FindTwoOrMoreCriteria.sil", PROJ)

Script

string [] keys = selectIssues("project= " + argv[0]);
string [] ret;

for(string k in keys){
    int criteriaCount = 0;
    
    if(arrayElementExists(%k%.labels, "criteria")) {
        criteriaCount ++;
    }
    if(%k%.assignee == %k%.reporter) {
        criteriaCount ++;
    }
    if(isNull(%k%.desc)) {
        criteriaCount ++;
    }
    if(arrayElementExists(%k%.components, "JIRA")) {
        criteriaCount ++;
    }
    if(%k%.priority == "Major") {
        criteriaCount ++;
    }
    
    if(criteriaCount >=2) {
        ret += k;
    }
    
}

return ret;
  • No labels