Hello
I use fetchxml to get a list of a entity.
there are 40 fields in the entity.
and I just want to print the filed name and value.
I don't want to print one by one.
so I want to use a for to print all.
the code in below don't working.
The question is how can I get the all fields of the entity?
{% for item in fetchResult.results.entities %}
{% for field in item %}
{{ field .name }}
{% endfor %}
{% endfor %}