Type alias BelongsToManyHasAssociationsMixin<TModel, TModelPrimaryKey>

BelongsToManyHasAssociationsMixin<TModel, TModelPrimaryKey>: ((targets: (TModel | TModelPrimaryKey)[], options?: BelongsToManyHasAssociationsMixinOptions<TModel>) => Promise<boolean>)

Type Parameters

  • TModel extends Model

  • TModelPrimaryKey

Type declaration

    • (targets: (TModel | TModelPrimaryKey)[], options?: BelongsToManyHasAssociationsMixinOptions<TModel>): Promise<boolean>
    • The removeAssociations mixin applied to models with belongsToMany. An example of usage is as follows:

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

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

      See

      Model.belongsToMany

      Parameters

      Returns Promise<boolean>

Generated using TypeDoc