Flutter: Match an associated value (original) (raw)

Finds all rows whose columns match the specified query object.

Parameters

(Required)
The object to filter with, with column names as keys mapped to their filter values

Examples

With select()

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