@elpete ,
I’m using “quick”:“^7.1.1", and I’m seeing a very weird issue: I have a Group entity and a GroupMember entities. Group has a members function defining:
function members() {
return hasMany(
relationName = ‘GroupMembers’,
foreignKey = ‘quick_select_group_id’,
localKey = ‘quick_select_group_id’
);
}
when I retrieve an instance of Group, I’m expecting to see a members key with an array of the members. It actually returns the right array length, but one of the fields is memberId:“' (empty string) and the other has the groupId value correctly. I’m using mementos. so I can have a friendly name instead of the table column name. if I reference the actual table name it returns the actual value, if I use the memento key name it returns an empty string . The interesting thing is that groupId it works as expected but not memberID from the Memento.
Any ideas why? Do you think you can take a look with me for a few minutes?