Retrieve one row of data
Retrieves only one row from the result. Result must be one row (e.g. using limit), otherwise this will result in an error.
final res = await supabase
.from('cities')
.select('name, country_id')
.single()
.execute();
Retrieves only one row from the result. Result must be one row (e.g. using limit), otherwise this will result in an error.
final res = await supabase
.from('cities')
.select('name, country_id')
.single()
.execute();
Need some help?
Contact supportLastest product updates?
See ChangelogSomething's not right?
Check system status