Para juntar A->B->C, você deve aninhar o include para C dentro do include para B, por exemplo.
A.findAll({
include: [
{
model: B,
include: [
{model: C}
]
}
]
})
Mas, se a tabela genders_link não tiver outros atributos além de PKs de filme e gênero, use através de .
YtMovies.belongsToMany(Genres, {through: GenresLink, foreignKey: 'movie_id' });
Genres.belongsToMany (YtMovies,{through: GenresLink, foreignKey: 'genre_id '});
YtMovies.findAll({
include: [
{
model: Genres,
required : true,
through: GenresLink
}
]
});
O manual tem algumas informações úteis sobre este tópico...