I have a content type with a reference field to another content type. This allows an unlimited amount of entries.
I’ve created a template for this field: field--node--field-my-fields.html.twig
I want to be able to access the fields of my referenced node. Usually you can do this by accessing the entity, but I can’t seem to do this.
{% for item in items %} {{ kint(item.content) }} {% endfor %}
I feel like this should be really simple, but I just can’t find a way to get access to the fields!
Thanks in advance for any answers.