Hello.
I have a problem with fetching data using fetchxml.
Some time ago it worked for me, now it works strangely.
Here is my code:
{% fetchxml params %}
<fetch mapping="logical">
<entity name="dyn365bc_params_test">
<attribute name="dyn365bc_parameter_name"/>
<attribute name="dyn365bc_parameter_value"/>
<attribute name="dyn365bc_no"/>
<attribute name="dyn365bc_params_test" />
</entity>
</fetch>
{% endfetchxml %}
{% for resultparams in params.results.entities %}
{{ resultparams.dyn365bc_parameter_value }}
{{ resultparams.dyn365bc_parameter_name }}
{{ resultparams.dyn365bc_params_test }}
{{ resultparams.dyn365bc_no }}
{% endfor %}
And as a result I get:

And this is data in the table:

So I retrieve the data from 'dyn365bc_parameter_name' and 'dyn365bc_params_test' (it's a GUID field).
I've done some tests and it always shows data from the first attribute I select to retrieve, no matter what kind of field it is and in addition it shows data from the GUID type field.
Do you have any idea why I can't show all attributes at the same time? I think the permissions in Power Pages and the field names are correct because I can retrieve data from any field, but only if it is my first attribute in the fetch xml.