In the query section of the Update request payload i have added a query.
INSERT INTO customer(customername, customercity, customerdescription) VALUES (
‘${payload.customername}’,
‘$cities’,
‘${payload.customerdescription}’);
when one of the fields(eg: customerdescription) are empty and when i click submit ‘${payload.customerdescription}’ goes into the database as it is.
customerdescription
--------------------------------
${payload.customerdescription}
tt
Is there a different way to add the query or is my syntax wrong?