Patient.hasMany('doctors', Doctor, { why: String }, { reverse: 'patients' });
Patient.sync();
[...]
patient.addDoctor(surgeon, {why: "remove appendix"}, function(err) {} )
How could I access the 'why'-property in this case? I can't seem to find it in the documentation.