Home

Match an associated value

Finds all rows whose columns match the specified query object.


final res = await supabase
  .from('cities')
  .select('name, country_id')
  .match({'name': 'Beijing', 'country_id': 156})
  .execute();