You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can go into the database and see that the type of contactPoint for the person is a string. Its holding the @Rid, but when I perform a populate on that value I don't get anything for the populated contactPoint attribute.
I've been looking into this particular structure and having issues when the hierarchy is created:
Contact
module.exports = {
attributes: {
emailAddress:
{
type: 'string',
primaryKey: true
},
}
};
Person:
module.exports = {
attributes: {
}
};
Now when I create a Person and look in OrientDB I'm seeing that the contactPoint is being created as type string.
In fact when I created a Person and associated a ContactPoint with it:
I can go into the database and see that the type of contactPoint for the person is a string. Its holding the @Rid, but when I perform a populate on that value I don't get anything for the populated contactPoint attribute.
This is with [email protected], [email protected], and OrientDB 2.1.2.
The text was updated successfully, but these errors were encountered: