The removeAssociations mixin applied to models with belongsToMany. An example of usage is as follows:
class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> { declare removeRoles: BelongsToManyRemoveAssociationsMixin<Role, Role['id']>;}User.belongsToMany(Role, { through: UserRole }); Copy
class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> { declare removeRoles: BelongsToManyRemoveAssociationsMixin<Role, Role['id']>;}User.belongsToMany(Role, { through: UserRole });
Optional
Model.belongsToMany
The removeAssociations mixin applied to models with belongsToMany. An example of usage is as follows: