Flutter: Match at least one filter

Finds all rows satisfying at least one of the filters.

Examples

With `select()`

final data = await supabase
  .from('cities')
  .select('name, country_id')
  .or('id.eq.20,id.eq.30');

Use `or` with `and`

final data = await supabase
  .from('cities')
  .select('name, country_id')
  .or('id.gt.20,and(name.eq.New Zealand,name.eq.France)');