Double Quotes Inside a Function

Hi. I’m trying to update a field in Pipefy.

When I want to update the field, I have to put the new data inside double quotes, for example, “example”.
When I want to clear the field, I have to use null.

image

How can I do this in Make?

for " use \” instead (this is how you pass " in json) and for null just write :
“param”: null

2 Likes

While this is perfectly valid for using quotations inside JSON strings, I think the issue here is a bit different @Dorian_Ben_Haim

Make can be weird with quotation marks inside functions because a lot of functions rely on JS and treat things as string concatenation. So it’s basically a “there’s already a pair of quotations there that Make ignore” kind of thing

An annoying but reliable and consistent workaround is to use replace:
image
image

Using " would keep the \ in the output:
image
image

For clarity, x = “a” in both examples

2 Likes

It works perfectly! Thanks!!!

3 Likes