const Comment = require('./comment') Comment.belongsTo(Comment, { as: 'parent' }) Comment.hasMany(Comment, { as: { singular: 'reply', plural: 'replies' }, foreignKey: 'parentId', }) module.exports = { Comment }