Column is in an array
Finds all rows whose value on the stated column
is found on the specified values
.
is_
and in_
filter methods are suffixed with _
to avoid collisions with reserved keywords.
final data = await supabase
.from('cities')
.select('name, country_id')
.in_('name', ['Rio de Janeiro', 'San Francisco']);