single()
Retrieves only one row from the result. Result must be one row (e.g. using
limit
), otherwise this will result in an error.
- JavaScript
- Python
const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.single()
Examples
select()
With - JavaScript
- Python
const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.single()