Finds all rows whose columns match the specified query
object.
final data = await supabase
.from('instruments')
.select('name, section_id')
.match(\{'name': 'drums', 'section_id': 2\});
final data = await supabase
.from('instruments')
.update(\{ 'name': 'piano' \})
.match(\{'name': 'harpsichord', 'section_id': 2\});
final data = await supabase
.from('instruments')
.delete()
.match(\{'name': 'harpsichord', 'country_id': 2\});
// Only valid if the Stored Procedure returns a table type.
final data = await supabase
.rpc('echo_all_instruments')
.match(\{'name': 'violin', 'country_id': 3\});