How to do dot walking in groupBy() method.
Hi,For Example: By doing GlideRecord on incident table, i want to filter records groupby assignment group managers var agg = new GlideAggregate('incident');agg.addQuery('active=true');agg.groupBy('assignment_group.manager');agg.query();While(gr.next)...
