У меня есть более 5000 записей, которые я хочу получить с помощью этого запроса, но каждый раз получаю cookie с нулевым значением. Я понял, что связанный объект является проблемой здесь, потому что когда я его удаляю, я получаю cookie каждый раз.CRM FetchXML извлекает более 5000 записей
<fetch version="1.0" mapping="logical" distinct="true" page="1" count="2000" >
<entity name="listmember" >
<link-entity name="contact" from="contactid" to="entityid" alias="c" >
<attribute name="contactid" />
<attribute name="telephone1" />
<link-entity name="phonecall" from="ic_customer" to="contactid" alias="pc" link-type="outer" distinct="true">
<attribute name="activityid" />
<filter type="and" >
<filter type="or" >
<condition attribute="statuscode" operator="eq" value="1" />
<condition attribute="ic_end" operator="on-or-after" value="2016-11-12" />
</filter>
</filter>
</link-entity>
<filter type="and" >
<condition attribute="statecode" operator="eq" value="0" />
<condition attribute="telephone1" operator="not-null" />
<condition attribute="donotphone" operator="eq" value="0" />
</filter>
</link-entity>
<filter type="and" >
<condition attribute="listid" operator="in" >
<value>
{f89087ef-7017-e611-80e3-5065f38a3951}
</value>
</condition>
<condition entityname="pc" attribute="activityid" operator="null" />
</filter>
</entity>
</fetch>
Кто-нибудь знает, как получить пейджинг-файл с этим запросом?
пытаются объяснить код. – Gahan