hammy
Results
1
comments of
hammy
I was able to get a simple example of a Polymorphic Association working with the conditional operators. ``` // Query db .select() .from(schema.users) .leftJoin( schema.doctors, and( eq(schema.users.profileId, schema.doctors.id), eq(schema.users.profileType, "Doctor")...