Python: Retrieve one row of data

Return data as a single object instead of an array of objects.

Examples

With `select()`

response = (
    supabase.table("planets")
    .select("name")
    .limit(1)
    .single()
    .execute()
)