The lack of transaction support is a major blocker for me with Supabase. I know it's possible via postgres functions, but if I have payment webhook I need to be doing the transaction logic in my code.
s
Steve
08/10/2021, 4:00 PM
You can make the webhook hit a SQL function through the REST API. Btw, you can see a curl example of how to call a function on your API docs.
Steve
08/10/2021, 4:01 PM
With that, you wouldn't need to handle transaction logic in your frontend code.