const \{ data, error \} = await supabase .from('cities') .select('name, country_id') .neq('name', 'The shire')
const \{ data, error \} = await supabase .from('countries') .update(\{ name: 'Mordor' \}) .neq('name', 'Gondor')
const \{ data, error \} = await supabase .from('countries') .delete() .neq('name', 'Mordor')
// Only valid if the Postgres function returns a table type. const \{ data, error \} = await supabase .rpc('echo_all_countries') .neq('name', 'Mordor')