Hey, I'm trying to pass an array of values to the JSON body of the HTTP Request node, but I'm getting a comma-separated string instead of an actual array.
I managed to fix it by adding square brackets and using .map() to wrap each item in quotes:
"keywords": [{{ $json.output.keywords.map(k => `"${k}"`) }}]
It works, but I'm wondering — is there a simpler or more elegant way to achieve this?