Shopware 6: association with nested association, is this posible? – PHP
I've a association in my EntityDefinition: ... class ParentEntityDefinition extends EntityDefinition { ... protected function defineFields(): FieldCollection { return new FieldCollection([ (new OneToOneAssociationField( 'childEntity', 'id', 'parent_entity_id', ChildEntityDefinition::class, false)), ]); } ... } The ChildEntity has a fk_field to currency_entity. To…