Hello everyone.
I am using Supabase as database in my Bubble application and using Supabase plugin made by Nocodegarden.
Using this plugin, when I try to update data using Update a Supabase Database action, I need to set payload.
I want to perform an action to increment a specific value in the database for filtered data. How should I set payload?
For example, if the status value is 1, I want to make it 2.
I tried set payload as like below but it’s not working.
{
“status”: “status + 1”;
}
Please let me know how to solve this problem.
Thank you.