KailiKameoka
12/06/2021, 6:10 PMwiesson
12/06/2021, 7:42 PMKeooo
12/06/2021, 7:47 PMKailiKameoka
12/06/2021, 7:53 PMKailiKameoka
12/06/2021, 7:53 PMKeooo
12/06/2021, 8:24 PMKeooo
12/06/2021, 8:24 PMKeooo
12/06/2021, 8:24 PMconst getTasks = () => {
const sub = supabase
.from('*')
.on('*', payload => {
console.log('Change received!', payload)
})
.subscribe()
console.log(sub);
return sub;
Keooo
12/06/2021, 8:25 PMKailiKameoka
12/06/2021, 8:29 PMKeooo
12/06/2021, 8:31 PMKailiKameoka
12/06/2021, 8:50 PMKeooo
12/06/2021, 8:55 PMKeooo
12/06/2021, 8:56 PMScott P
12/06/2021, 8:57 PMsupabase.from('my_table').select( /*...*/)
- part of the regular select lookup and independent of the subscriptionKailiKameoka
12/06/2021, 9:04 PM