First, thanks for the awesome tool! I’m currently trying to generate mock data with incremental IDs using {{index}} in my responses.
However, when I add {{index}} , the IDs are returning as null instead of the expected index values.
I want to be able to generate incremental IDs automatically across multiple endpoints without having to create exceptions or custom rules for each one. Is there a recommended way to use {{index}} correctly, or any other method to achieve this ?
If you want the counter to start from 1 on every request, it would always be 1 and lose its increment functionality. Currently, {{$helper.autoIncrementEnvVar}} requires a client restart to reset.
I understand that {{$helper.autoIncrementEnvVar}} requires a client restart to reset, but my goal is to generate a list where the id is simply the index + 1 of each item in the list, so starting from 1. Is there a way to achieve this dynamically without relying on autoIncrementEnvVar ?