Hi Team,
I sometimes see the following code, it's related to Dynamics CRM.
var query = '<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">'
+ '<entity name="entity">'
+ '<attribute name="attributename" />'
+ '<attribute name="attributename" />'
+ '<attribute name="attributename" />'
+ '<order attribute="attributename" descending="false" />'
+ '<filter type="and">'
+ '<condition attribute="attributename" operator="ne" value="' + value + ' />'
+ '<condition attribute="attributename" operator="not-null" />'
+ '</filter>'
+ '</entity>'
+ '</fetch>';
var results = XrmServiceToolkit.Soap.Fetch(query);
what is XrmServiceToolkit? I am using Dynamics 365 online CRM V9.1. I never find any info on D365 documentations, it seems that this js uses SOAP instead of Web API. Is it available in D365 CRM online V9.1?
I only see there is Xrm.WebAPI, but it's Async call, is XrmServiceToolkit a Sync call? Should i use it ?
thanks