September 2017
Intermediate to advanced
408 pages
9h 25m
English
This is similar to addNullQuery but returns records where the field value is NOT NULL. The following example will return all records stored in the incident table where short_description field is NOT NULL:
var gr = new GlideRecord("incident");
gr.addNotNullQuery('short_description');
gr.query();
Read now
Unlock full access