How to reset GlideRecord object
Hello,I have a code like thisvar gr = new GlideRecord('myTable');for(int i=0;i<5;i++){ gr.addQuery('column', i) gr.query(); gr.getrowcount();}Problem is, for i=0 it works but for next iterator it appends the addQuery condition...
