Hi,

lets say we have to Content Types: "A" and "B".
Content Type "A" has only one field: "a_field_1" of typ "Entity Reference"
Content Type "B" has 2 fields: b_field_1 and b_field_2 of type Text or something else..

Now I want to set a reference of an article of content type "A" to an article of content type "B". My field configuration works and the autocomplete gives me all suggestions for Articles of Content type B. In the display settings "format" of a_field_1 is choosed "Entity ID".
So in my twig template I can use {{ content.a_field_1 }} to get that Entity ID of my reference article ... But how can I access all the other fields of the referenced Article? For example b_field_1 and b_field_2 in my template?

Thanks
Mo