Hi @charlie,
Yes, I want to revert all instances of the looped data inside the array into the opposite order. So instead of 0, 1, 2, 3, 4, 5 that would be 5, 4, 3, 2, 1, 0. But with different dates and date ranges (values) instead of the numbers.
I will also need to do the same with other arrays inside API response, which might have text or boolean values instead. In other words, if we were to work with an Excel table, we would need to revert the order of all rows from A…Z to Z…A in our output.
Current A…Z output for Dates array is the following:
Using looper.field({"key":"Dates"}) | reverse does not return anything.
The output of the {{ looper.field({"key":"Dates"}) | json_encode }} is the following:
Request to the API endpoint is in Raw format.