Delete row / Update row

I’m having difficulty applying the settings to update or delete the user in the datagrid.
I’m currently using Supabase as a backend.

In this screen above, I have related data from two tables…

In the update, I need to join the employees table and the user_work_profile table… how would I do this in this case? If you notice, in this step it shows the option to select a table only

You can do an update for both tables. With two actions, this would be the quick and dirty way. If you end up updating more tables, it might be worth a shot to write your own “endpoint” a.k.a a PGSQL function / edge function and handle that on the backend side of things.