# [一代目]sequelize(JSON描述)
- https://github.com/sequelize/sequelize (opens new window)
- https://www.sequelize.com.cn/ (opens new window)
const { Op } = require("sequelize");
Post.findAll({
where: {
authorId: {
[Op.eq]: 2
}
}
});
const { Op } = require("sequelize");
Post.findAll({
where: {
authorId: {
[Op.eq]: 2
}
}
});