I have a backend workflow that return some data and among the data there is a field called “form_variable_fields” that should be a json string. But instead I get an [object Object].
I’ve tried the following:
json.stringify
console.log
read the key value with a JSON plugin
But in the end it always display a [object Object]. Any idea how I can solve this? Thanks for your help!
The return value for from_variable_fields is of type text. So I thought it would give it to me as a json string but it’s just [object Object] (see below).