This topic was automatically generated from Slack. You can find the original thread here.
Jean : Hi guys. Need some help.
I have a step which is connected to BigQuery. I have 1 column of type STRING and I try to insert an object as a string JSON.stringify(obj) …
I tried the following in the BigQuery step > Rows configuration (hsData is stringified):
{"hs_data": "{{steps.continue_if.$return_value.hsData}}", "timestamp": "{{steps.continue_if.$return_value.timestamp}}"}
or
{"hs_data": {{steps.continue_if.$return_value.hsData}}, "timestamp": "{{steps.continue_if.$return_value.timestamp}}"}
or
{"hs_data": '{{steps.continue_if.$return_value.hsData}}', "timestamp": "{{steps.continue_if.$return_value.timestamp}}"}
I just can’t make it work. What is the correct syntax? Thxs in advance