Possible implementation: ``` const mySubscription = supabase .from('countries') .on('UPDATE', payload => { }) .subscribe({ ignoreDuplicates: true }) ``` Object comparisons in JS aren't very "performant" (if there is such a word), so we will want to make the `ignoreDuplicates = false` by default. Context: 
Activity
kiwicopple commentedon Aug 10, 2020
Note that we only need this in the
supabase-js
level, I don't think it needs to be inrealtime-js