Flutter: Match at least one filter

Finds all rows satisfying at least one of the filters.

Parameters

Examples

With `select()`

final data = await supabase
  .from('instruments')
  .select('name')
  .or('id.eq.2,name.eq.cello');

Use `or` with `and`

final data = await supabase
  .from('instruments')
  .select('name')
  .or('id.gt.3,and(id.eq.1,name.eq.violin)');

Use `or` on referenced tables

final data = await supabase
  .from('orchestral_sections')
  .select('''
    name,
    instruments!inner (
      name
    )
  ''')
  .or('section_id.eq.1,name.eq.guzheng', referencedTable: 'instruments' );