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();
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();
Not to worry, our specialist engineers are here to help. Submit a support ticket through the Dashboard.