Prefix
12/28/2021, 9:24 PMtypescript
// ✅ this is working correctly (able to receive INSERT, UPDATE and DELETE events for the `board_cards` table):
const subscription = await supabase
.from('*')
.on('*', handler)
.subscribe();
// ❌ this is NOT working correctly (unable to receive INSERT, UPDATE and DELETE events for the `board_cards` ):
const subscription = await supabase
.from(`board_cards:list_id=eq.${someId}`)
.on('*', handler)
.subscribe();
garyaustin
12/28/2021, 9:41 PMgaryaustin
12/28/2021, 9:52 PMPrefix
12/28/2021, 10:04 PMPrefix
12/28/2021, 10:04 PMPrefix
12/28/2021, 10:05 PMpublic...
typescript
.from(`public.board_cards:list_id=eq.${someId}`)
Prefix
12/28/2021, 10:06 PMgaryaustin
12/28/2021, 10:08 PMPrefix
12/28/2021, 10:09 PMPrefix
12/28/2021, 10:09 PM