Unpopulated fields between two Schemas keystone.js
问题 I have two models: Entity and Cabinet. Entity model can have multiple cabinets. One cabinet can have one Entity object. In my admin UI when I create Cabinet I specify the Entity which the cabinet belongs to. I have linked Entity to Cabinets and Cabinets to Entity like this: models/Entity.js Entity.add({ name: { type: Types.Text, initial: true, label: 'Име' }, cabinets: { type: Types.Relationship, ref: 'Cabinet', many: true }, }) models/Cabinet.js Cabinet.add({ entity_id: { type: Types