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