The createAssociation mixin applied to models with belongsToMany. An example of usage is as follows:
class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> { declare createRole: BelongsToManyCreateAssociationMixin<Role>;}User.belongsToMany(Role, { through: UserRole });
Model.belongsToMany
Optional
Generated using TypeDoc
The createAssociation mixin applied to models with belongsToMany. An example of usage is as follows:
See
Model.belongsToMany