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();
Need some help?
Contact supportLastest product updates?
See ChangelogSomething's not right?
Check system status