Type alias HasManySetAssociationsMixin<T, TModelPrimaryKey>

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

Type Parameters

  • T extends Model

  • TModelPrimaryKey

Type declaration

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

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

      User.hasMany(Role);

      See

      Model.hasMany

      Parameters

      Returns Promise<void>

Generated using TypeDoc