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: 