The overall context is that I’m looping through a set of items and using an API Query to retrieve 1:many inventory data. I’m first doing a query to scalar in order to establish the max item number ${itemid_current_max}, and my intention is for the loop to stop when it iterates past that number.
Both environment variables are numeric. I have confirmed (via debugging w/ python) that ${itemid_current_max} is being set correctly to a value of 157139. . However, the loop isn’t stopping when ${itemid_min} increments beyond the ${itemid_current_max} value, it just carries on all the way to the End Value of 200000.
Am I doing something wrong here?