Harry Stromfelt

Results 2 comments of Harry Stromfelt

I just came across the need for RLS as I will be using Supabase Realtime. For me the whole "single source of truth" being the zmodels is super desirable. If...

I am hitting this problem as well. I am watching for UPDATEs like so: ``` ... .on( "postgres_changes", { schema: "public", table: "Feed", event: "UPDATE" }, (payload) => console.log("UPDATE", payload)...