我有以下 fetchxml 查询,它在 Advanced Find / FetchXML Builder 中运行良好。但是,在流动模板中,相同的查询没有返回任何内容。
{% fetchxml feed %}
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="contact">
<attribute name="fullname" />
<attribute name="telephone1" />
<attribute name="contactid" />
<order attribute="fullname" descending="false" />
</entity>
</fetch>
{% endfetchxml %}
{
"results":[
{% for item in feed.results.entities %}
{
"Id":"{{ item.ebecs_vatgroupid }}",
"Name":"{{ item.ebecs_name }}"
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]
}
我是系统管理员,拥有适当的实体权限以及与我的用户关联的网络角色。任何人都可以在这方面提供帮助吗?