If not, what is the alternative solution? Thanks
Solved! Go to Solution.
No, I don't think so. But if you want the length of the array you can just do a JavaScript callout like this:
var c = JSON.parse(context.getVariable('request.content'));
var length = c.some_array.length;
context.setVariable('extracted-array-length', length.toFixed(0));