Im having an issue with supabase postgres changes. I have a subscription on frontend to watch for changes on a table using RLS policy to only see the changes of the current user.
The problem that im facing is that i can access the data with normal REST querys like supabase.from().select(*) but when subscribing like: supabase.channel.on i dont get any events at all. If i disable RLS or set a policy to allow read to everyone, i get the events but for every user, and i want to have only for the current user.