The countAssociations mixin applied to models with hasMany. An example of usage is as follows:
class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> { declare countRoles: HasManyCountAssociationsMixin<Role>;}User.hasMany(Role); Copy
class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> { declare countRoles: HasManyCountAssociationsMixin<Role>;}User.hasMany(Role);
Optional
Model.hasMany
The countAssociations mixin applied to models with hasMany. An example of usage is as follows: