Match only rows where column is included in the values array.
column
values
The column to filter on
The values array to filter with
const \{ data, error \} = await supabase .from('countries') .select() .in('name', ['Albania', 'Algeria'])