Ask Your Question
4

How to retrieve rows using Sequelize that have at least one many-to-many item?

asked 2022-11-22 11:00:00 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-06-17 00:00:00 +0000

woof gravatar image

To retrieve rows using Sequelize that have at least one many-to-many item, use the include property in your query. The include property allows you to specify related models to include in your result set.

Assuming you have a many-to-many association between two models ModelA and ModelB through a junction table ModelA_ModelB, you can use the following code to retrieve all ModelA instances that have at least one associated ModelB instance:

ModelA.findAll({
  include: [
    {
      model: ModelB,
      through: { model: ModelA_ModelB }
    }
  ]
})

This will generate a SQL query that joins the three tables and returns only the ModelA instances that have at least one associated ModelB instance. The through property is used to specify the junction table for the many-to-many association.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-11-22 11:00:00 +0000

Seen: 8 times

Last updated: Jun 17 '22