Type Alias BelongsToManyHasAssociationMixin<TModel, TModelPrimaryKey>

BelongsToManyHasAssociationMixin: (
    target: TModel | TModelPrimaryKey,
    options?: BelongsToManyHasAssociationMixinOptions<TModel>,
) => Promise<boolean>

The hasAssociation mixin applied to models with belongsToMany. An example of usage is as follows:

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

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

Type Parameters

  • TModel extends Model
  • TModelPrimaryKey

Type declaration

Model.belongsToMany