Type alias BelongsToManySetAssociationsMixin<TModel, TModelPrimaryKey>

BelongsToManySetAssociationsMixin<TModel, TModelPrimaryKey>: ((newAssociations?: (TModel | TModelPrimaryKey)[], options?: BelongsToManySetAssociationsMixinOptions<TModel>) => Promise<void>)

Type Parameters

  • TModel extends Model

  • TModelPrimaryKey

Type declaration

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

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

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

      See

      Model.belongsToMany

      Parameters

      Returns Promise<void>

Generated using TypeDoc