Hi,
I have a FlowScript code segment that works in our DEV Environment but doesn’t work in PROD. I think it is because the DEV version of Flow Studio is 6.14.13.8 and the PROD version of Flow Studio is 6.13.17.40064.
Is there a Workaround I can use?
The code is
let x = select distinct ln4, prt, loc from dupcnt6;
return x;
“Distinct” is not recognised in the version 13 (I think). I removed “Distinct” and tried “GroupBy”, it doesn’t work.

