Perform a SELECT on the query result.
try await supabase .from("countries") .upsert(CountryModel(id: 1, name: "Algeria")) .select() .execute()