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('instruments')
  .select('name, section_id')
  .or('id.gt.20,and(name.eq.violin,section_id.eq.3)');