Correct way of adding future datetime in MySQL from wappler?

I have adate filed and I want to add in {{NOW_UTC}} + 2 days

{{NOW_UTC}} saves as expected.

I then create this using Wappler Data bindings

{{NOW_UTC.dateAdd(‘days’, 2)}}

It doesn’t work and throws an error:

"Error: ER_TRUNCATED_WRONG_VALUE: Incorrect datetime value: ‘2020-09-27T02:14:58.000Z’

So what is the correct way of adding 2 days on to the current time for NODE?

Did you try to format NOW_UTC first?

Yeah, NOW_UTC on its own works, but when I add the expression to add the 2 days it comes back with the error. Any clues what is going on?