Lk

Results 2 comments of Lk

I either use `Second.findByPk(1, { include: [First], raw: true, first: true });` Like you mention above or I overwrite the `toJSON` function for my models to always call the associations....

you can run a raw query if you cannot get exactly what you want: https://sequelize.org/docs/v6/core-concepts/raw-queries/