We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.
ignoreDuplicates = false
Context: