Type alias BelongsToManyCountAssociationsMixin<T>

BelongsToManyCountAssociationsMixin<T>: ((options?: BelongsToManyCountAssociationsMixinOptions<T>) => Promise<number>)

Type Parameters

Type declaration

    • (options?: BelongsToManyCountAssociationsMixinOptions<T>): Promise<number>
    • The countAssociations mixin applied to models with belongsToMany. An example of usage is as follows:

      class User extends Model<InferAttributes<User>, InferCreationAttributes<User>> {
      declare countRoles: Sequelize.BelongsToManyCountAssociationsMixin;
      }

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

      See

      Model.belongsToMany

      Parameters

      Returns Promise<number>

Generated using TypeDoc