Type alias HasManyRemoveAssociationsMixin<T, TModelPrimaryKey>

HasManyRemoveAssociationsMixin<T, TModelPrimaryKey>: ((oldAssociateds?, options?) => Promise<void>)

The removeAssociations mixin applied to models with hasMany. An example of usage is as follows:

class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
declare removeRoles: HasManyRemoveAssociationsMixin<Role, Role['id']>;
}

User.hasMany(Role);

Type Parameters

  • T extends Model
  • TModelPrimaryKey

Type declaration

See

Model.hasMany