Retrieve the query as one row. With `select()`. const { data, error } = await supabase .from('cities') .select('name, country_id') .limit(1) .single() ...
確定! 回上一頁