Type alias BelongsToManyAddAssociationsMixin<T, TModelPrimaryKey>

BelongsToManyAddAssociationsMixin<T, TModelPrimaryKey>: ((newAssociations?: (T | TModelPrimaryKey)[], options?: BelongsToManyAddAssociationsMixinOptions<T>) => Promise<void>)

Type Parameters

  • T extends Model

  • TModelPrimaryKey

Type declaration

    • (newAssociations?: (T | TModelPrimaryKey)[], options?: BelongsToManyAddAssociationsMixinOptions<T>): Promise<void>
    • The addAssociations mixin applied to models with belongsToMany. An example of usage is as follows:

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

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

      See

      Model.belongsToMany

      Parameters

      Returns Promise<void>

Generated using TypeDoc