Flow Designer: how can you retrieve values in an action of a glide_list object?Issue In a Flow you want to use the values of a glide_list object. You can pass this to an action and to the Script step. In the Flow execution details all of this seems to work, but you can't retrieve the values from the object in the code. It only works if there's one value, if there are more than one you can see the fields but not the values.ResolutionIn order to access all the records in a GlideRecord object, you need to iterate it with a gr.next() in order to get the next record in the GlideRecord object. So assuming you use a Script step in action and you use List.User, here's the code: (function execute(inputs, outputs) {var gr = inputs.param1;while(gr.next()) { gs.log("sys_id: " + gr.getValue('sys_id')); for (var prop in gr){ gs.log(prop + ":" + gr.getValue(prop)) }}})(inputs, outputs);