Hi,
I'm running the following FetchXML in Javascript to retrieve some data:
var fetchXML = "<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'>" +
"<entity name='account'>" +
"<attribute name='name' />" +
"<attribute name='accountnumber' />" +
"<attribute name='accountid' />" +
"<order attribute='name' descending='false' />" +
"<filter type='and'>" +
"<condition attribute='dll_comreftype' operator='eq' value='400000000' />" +
"<condition attribute='parentaccountid' operator='eq' uitype='account' value='" + TopRef + "' />" +
"</filter>" +
"<link-entity name='connection' from='record1id' to='accountid' link-type='outer' alias='conn' >" +
"<attribute name='connectionid' alias='connectionid'/>" +
"<filter type='and' >" +
"<condition attribute='record2id' operator='eq' value='" + contactId +"' />" +
"</filter>" +
"</link-entity>" +
"</entity>" +
"</fetch>";
The problem is, when I debug the result, the attribute of the link-entity is nowhere to be found?

How is this possible?
Regards,
Roel
*This post is locked for comments
I have the same question (0)