0

I have two models in which one is Question and other is Answer, each answer has one question_id and question can have more then one answers.

I want to include all the answers of each question in my json response but I am keep getting an error

"message": "answer is not associated to question!"*

Below is the Question model:-

module.exports = (sequelize, Sequelize) => {
    const Question = sequelize.define("question", {
        question_id: {
            type: Sequelize.INTEGER,
            primaryKey: true,
            autoIncrement: true
        },
        question_no: {
            type: Sequelize.DOUBLE,
            allowNull: false
        },
        question_text: {
            type: Sequelize.STRING,
            allowNull: false
        },
        question_text: {
            type: Sequelize.STRING,
            allowNull: false
        },
        question_required: {
            type: Sequelize.BOOLEAN,
        },
        formpage_no: {
            type: Sequelize.DOUBLE,
            allowNull: false
        },
        med_id: {
            type: Sequelize.INTEGER,
            allowNull: false,
            references: {
                model: 'medforms',
                key: 'med_id'
            },
            onUpdate: 'CASCADE',
            onDelete: 'CASCADE'
        },
        med_name: {
            type: Sequelize.STRING,
            allowNull: true
        },
        version_no: {
            type: Sequelize.STRING,
            allowNull: false
        }
    }, {
        freezeTableName: false,  // true: if we want to make table name as we want else sequelize will make them prural
        underscored: true // underscored: true indicates the the column names of the database tables are snake_case rather than camelCase
    });
    Question.associate = function (models) {
        Question.hasMany(models.answer, {
            foreignKey: 'question_id',
            as: 'answers'
        });
        Question.hasMany(models.helpbox, {
            foreignKey: 'question_id',
            as: 'helpboxes'
        });
        // in future each question could have more than one document text
    };
    return Question;
};

And below is my answer model:-

module.exports = (sequelize, Sequelize) => {
    const Answer = sequelize.define("answer", {
        answer_id: {
            type: Sequelize.INTEGER,
            primaryKey: true,
            autoIncrement: true
        },
        question_id: { // each answer has one questionId
            type: Sequelize.INTEGER,
            allowNull: false,
            references: {
                model: 'questions',
                key: 'question_id'
            },
            onUpdate: 'CASCADE',
            onDelete: 'CASCADE',
        },
        question_no: {
            type: Sequelize.DOUBLE,
            allowNull: true
        },
        answer_no: {
            type: Sequelize.DOUBLE,
            allowNull: true
        },
        answer_text: {
            type: Sequelize.STRING,
            allowNull: false
        },
        answer_icon: {
            type: Sequelize.STRING,
            allowNull: true
        },
        answer_reply: {
            type: Sequelize.STRING,
            allowNull: true
        },
        answer_logic: {
            type: Sequelize.STRING,
            allowNull: true
        },
        med_name: {
            type: Sequelize.STRING,
            allowNull: true
        },
        version_no: {
            type: Sequelize.STRING,
            allowNull: false
        },
    }, {
        freezeTableName: false,  // true: if we want to make table name as we want else sequelize will make them prural
        underscored: true // underscored: true indicates the the column names of the database tables are snake_case rather than camelCase
    });
    Answer.associate = function (models) {
        Answer.belongsTo(models.question, {
            as: 'questions'
        });
        // in future each question could have more than one document text
    };
    return Answer;
};

below is the index.js class:-

var Sequelize = require('sequelize');
var env = process.env.NODE_ENV || 'development';
var config = require("../config/config.json")[env];
var db = {};

if (config.use_env_variable) {
    var sequelize = new Sequelize(process.env[config.use_env_variable]);
} else {
    var sequelize = new Sequelize(config.database, config.username, config.password, config);
}

db.Sequelize = Sequelize;
db.sequelize = sequelize;

// Models
db.medform = require("./medform.model.js")(sequelize, Sequelize);
db.version = require("./version.model.js")(sequelize, Sequelize);
db.question = require("./question.model.js")(sequelize, Sequelize);
db.helpbox = require("./helpbox.model.js")(sequelize, Sequelize);
db.answer = require("./answer.model.js")(sequelize, Sequelize);
db.document = require("./document.model.js")(sequelize, Sequelize);


module.exports = db;

This is my question controller

// Retrieve Question including answers from the database:
exports.getAllQuesData = (req, res) => {
    const version_no = req.query.version_no;
    const med_id = req.query.med_id;

    var condition = [{ "version_no": version_no }, { "med_id": med_id }];

    Question.findAll({
        include: [
            {
                model: answer,
                as: 'answers'
            }
        ],
        where: condition
    })
        .then(data => {
            res.send(data);
        })
        .catch(err => {
            res.status(500).send({
                message:
                    err.message || "Some error occurred while retrieving questions."
            });
        });
};

Please help me what I am doing wrong why my associations are not working

smadnan
  • 29
  • 2
  • 9

1 Answers1

0

You didn't register model associations. See my answer how to do it

Object.keys(db).forEach(function (modelName) {
  if (db[modelName].associate) {
    db[modelName].associate(db)
  }
})
Anatoly
  • 20,799
  • 3
  • 28
  • 42