Type alias BelongsToManyRemoveAssociationMixin<TModel, TModelPrimaryKey>

BelongsToManyRemoveAssociationMixin<TModel, TModelPrimaryKey>: ((oldAssociated?: TModel | TModelPrimaryKey, options?: BelongsToManyRemoveAssociationMixinOptions) => Promise<void>)

Type Parameters

  • TModel

  • TModelPrimaryKey

Type declaration

    • (oldAssociated?: TModel | TModelPrimaryKey, options?: BelongsToManyRemoveAssociationMixinOptions): Promise<void>
    • The removeAssociation mixin applied to models with belongsToMany. An example of usage is as follows:

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

      User.belongsToMany(Role, { through: UserRole });

      See

      Model.belongsToMany

      Parameters

      Returns Promise<void>

Generated using TypeDoc