September 2017
Intermediate to advanced
408 pages
9h 25m
English
We can apply multiple search queries, which act as AND clauses, by adding multiple addQuery, addNullQuery, or addNotNullQuery methods, as shown in the following example:
var gr = new GlideRecord("incident");
gr.addQuery('priority','<=','2');
gr.addQuery('active',true);
gr.addNotNullQuery('short_description');
gr.query();
Read now
Unlock full access