I'm trying to access an object method inside a volt template but I don't know why in one template I can while in another I can't. I tried to dump the object inside the template and it works, but I can't access its variables. Code:
<div class="tags-wrapper">
<div class="tags-column">
{% for tag in result['tag_list'] %}
{{ tag.getName() }}
{% endfor %}
</div>
</div>