
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
sails-sequelize-nested
Advanced tools
A simple helper, allows you to do nested creates with Sequelize + Sails.
A simple helper, allows you to do nested creates with Sequelize + Sails.
npm install sails-sequelize-nestedAs you may notice, nested create can be really tricky with sequelize. You have to include all nested associations like so:
Product.create({
title: 'Chair',
user: {
first_name: 'Mick',
last_name: 'Broadstone',
}
}, {
include: [{ association: Product.User }]
});
Things are getting even more complicated if you have an association including another association.
Product.create({
title: 'Chair',
user: {
first_name: 'Mick',
last_name: 'Broadstone',
address: {
city: 'Austin',
state: 'TX',
zip: '78704'
}
}
}, {
include: [{
association: Product.User,
include: [ User.Address ]
}]
});
You constantly need to track all includes. I don't really understand why it was made that complicated way in sequelize. You can read all includes from the schema, and add it if needed automatically.
That module solves this problem by extending sails models with nested methods.
Model.createNested(record)| Argument | Type | Details | |
|---|---|---|---|
| 1 | model | String | A model name. |
| 2 | record | Object | An Object that is to be created. |
Returns: Promise
Consider the following models:
const Product = this.sequelize.define('product', {
title: Sequelize.STRING
});
const User = this.sequelize.define('user', {
first_name: Sequelize.STRING,
last_name: Sequelize.STRING
});
const Address = this.sequelize.define('address', {
city: Sequelize.STRING,
state: Sequelize.STRING,
zip: Sequelize.STRING,
});
Product.User = Product.belongsTo(User);
User.Address = User.belongsTo(Address);
A new Product, User, and Address can be created in one step in the following way:
Product.createNested({
title: 'Chair',
user: {
first_name: 'Mick',
last_name: 'Broadstone',
address: {
city: 'Austin',
state: 'TX',
zip: '78704'
}
}
});
FAQs
A simple helper, allows you to do nested creates with Sequelize + Sails.
We found that sails-sequelize-nested demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.