const { data, error } = await supabase .from('characters') .select('name, book_id') .in('name', ['Harry', 'Hermione'])
const { data, error } = await supabase .from('countries') .update({ name: 'Mordor' }) .in('name', ['Gondor', 'Rohan'])
const { data, error } = await supabase .from('characters') .delete() .in('name', ['Dumbledore', 'Snape'])
// Only valid if the Postgres function returns a table type. const { data, error } = await supabase .rpc('echo_all_characters') .in('name', ['Luke', 'Leia'])