Is it possible to only choose certain fields in a gliderecord query?
I was attempting to do some research on how to optimize a GlideRecord query. ChatGPT said that when I run:grIncident.query(); while (grIncident.next()) {}then all of the record fields are returned in the query and all of those data points are loaded...
