SupabaseS
Supabase12mo ago
Chris

See modified database rows

        const { data, error } = await supabaseService
            .schema('stations')
            .from('station_follows')
            .delete()
            .match({ user_id: userId, podcast_id: id });

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?
Was this page helpful?