Flutter: With a common element

Examples

With `select()`

final data = await supabase
  .from('countries')
  .select('name, id, main_exports')
  .overlaps('main_exports', ['computers', 'minerals']);

With `update()`

final data = await supabase
  .from('countries')
  .update(\{ 'name': 'Mordor' \})
  .overlaps('main_exports', ['computers', 'minerals']);

With `delete()`

final data = await supabase
  .from('countries')
  .delete()
  .overlaps('main_exports', ['computers', 'minerals']);

With `rpc()`

// Only valid if the Stored Procedure returns a table type.
final data = await supabase
  .rpc('echo_all_countries')
  .overlaps('main_exports', ['computers', 'minerals']);