I have two tables: Books and Articles with a many-to-many relationship between them. Joining table is BookArticles.
models/books.js
module.exports =
M:M relation through table BookArticles:
M:M
BookArticles
m.Book.belongsToMany(m.Article, {through: m.BookArticles}); m.Article.belongsToMany(m.Books, {through: m.BookArticles});