sequelize icon indicating copy to clipboard operation
sequelize copied to clipboard

The typings for https://github.com/sequelize/sequelize

Results 39 sequelize issues
Sort by recently updated
recently updated
newest added

Currently, Model.count has this signature: ```js count(options?: CountOptions): Promise; ``` However, if you pass `group` options to the count call, the return is an array. For example, assuming a naive...

https://sequelize.org/master/manual/model-basics.html#model-synchronization provides and "alter" option that doesn't exist in the SyncOptionss interface

Hello everyone! I'm trying to make a wrapper around sequelize mixins and I stumbled upon this. If I understood the mixing correctly, the `createModel` mixin for `hasOne` association does not...

The types are not matching the type described in Sequelize's documentation. `public static where(attr: Object, comparator: String | *Op*, logic: String | Object): *`

Types are not matching with Sequelize's documentation `where` function. `public static where(attr: Object, comparator: String | Op, logic: String | Object): *`

All the shops where I've worked that use sequelize use **sequelize.import()** to define models; it allows you to create more modular definition files. I had a really hard time upgrading...

The first parameter for update is `values: object`, where anything can be passed as a parameter, as in the line: https://github.com/types/sequelize/blob/69b371d9dc754d409191556d032dba5aa6f42c53/lib/model.d.ts#L1907 I think it should be `values: Partial`. That way...

Hi, The first parameter of the bulkInsert function is the table name as string. However, this can also be an object with the schema and Table Name properties if the...