I have following two models
Nurse
Room
A room has belongsTo relation with the nurse model as defined below:
"relations": {
"nurse": {
"model": "Nurse",
"type": "belongsTo",
"foreignKey": "nid"
}
}
which works fine and produces the data on following urls
but when I try the embedsOne relation as defined below:
"relations": {
"nurse": {
"model": "Nurse",
"type": "embedsOne",
"foreignKey": "nid"
}
}
and try accessing url at
I get the following error:
message: "ER_BAD_FIELD_ERROR: Unknown column '_nurse' in 'field list'",
thoughts?