See modified database rows
data and error are both null if this deletes a row or if it doesn't. How can I determine the modified rows without selecting from the table?error const { data, error } = await supabaseService
.schema('stations')
.from('station_follows')
.delete()
.match({ user_id: userId, podcast_id: id });