Flutter: Match an associated value

Finds all rows whose columns match the specified query object.

Parameters

Examples

With select()

final data = await supabase
  .from('instruments')
  .select()
  .match({ 'id': 2, 'name': 'viola' });