Limit the query result by from and to inclusively.
try await supabase .from("countries") .select( """ name, cities ( name ) """ ) .range(from: 0, to: 1) .execute()