Versions
I'm submitting a ...
[ ] bug report
[ ] feature request
Actual behavior:
It gives compilation error with message property does not exist on typeof Model | IncludedOptions etc
Expected behavior:
It should not give compilation error as query which is created works as expected.
Steps to reproduce:
Association Team hasMany Players.
Fetch Team and its players.
Related code:
// Two models eg:
Team, Player
Team.hasMany(Players);
// Fetch team and its players let's say I want to apply pagination on players array.
// Query will be
Team.findOne({
where: { id: 1 },
include: [
{ model: Player, limit: 5, offset: 0 } // using offset here gives compile error
]
})
Workaround
Add @ts-ignore-next-line before the offset property.
Thanks a lot, guys, for this package!
I have a similar error with offset property inside deep include.
The following code worked before the project was typescripted.
Please give me suggestions of how can I fix it?
package.json:
code:
let teamEvent = await TeamEventModel.findOne({
where: {url_code},
include: [{
Event: EventModel,
include: [{
Game: GameModel,
include: [{
model: PartModel,
order: [['order', 'ASC']],
limit: 1,
offset: 1,
}]
}]
}]
});
error:
TS2769: No overload matches this call. 聽聽
Overload 1 of 2, '(this: ModelStatic<TeamEventModel>, options: NonNullFindOptions<any>): Promise<TeamEventModel>', gave the following error. 聽聽聽
Type '{ model: typeof PartModel; order: [string, string][]; limit: number; offset: number; }' is not assignable to type 'Includeable'. 聽聽聽聽聽聽
Object literal may only specify known properties, and 'offset' does not exist in type 'typeof Model | Association<Model<any, any>, Model<any, any>> | IncludeOptions | { all: true; nested?: true | undefined; }'. 聽聽
Overload 2 of 2, '(this: ModelStatic<TeamEventModel>, options?: FindOptions<any> | undefined): Promise<TeamEventModel | null>', gave the following error. 聽聽聽聽
Type '{ model: typeof PartModel; order: [string, string][]; limit: number; offset: number; }' is not assignable to type 'Includeable'. 聽聽聽聽聽聽
Object literal may only specify known properties, and 'offset' does not exist in type 'typeof Model | Association<Model<any, any>, Model<any, any>> | IncludeOptions | { all: true; nested?: true | undefined; }'.
@ezalivadnyi Add @ts-ignore-next-line before the offset it will execute the query properly. Typings are not updated for offset property in include query.
Hey, is it still the case with [email protected] and [email protected] ? @zebkailash