Finds all rows whose value on the stated column is found on the specified values.
column
values
The column to filter on.
The List to filter with.
final data = await supabase .from('countries') .select() .inFilter('name', ['Albania', 'Algeria']);