Retrieve zero or one row of data
Return data
as a single object instead of an array of objects.
const { data, error } = await supabase
.from('countries')
.select()
.eq('name', 'Singapore')
.maybeSingle()
Return data
as a single object instead of an array of objects.
const { data, error } = await supabase
.from('countries')
.select()
.eq('name', 'Singapore')
.maybeSingle()
Need some help?
Contact supportLatest product updates?
See ChangelogSomething's not right?
Check system status