I am receiving liquid error on one of our web templates. Any help is appreciated.
{% fetchxml workorderlist %}
<fetch version="1.0" mapping="logical" output-format="xml-platform" distinct="true" returntotalrecordcount="true">
<entity name="msdyn_workorder">
<attribute name="msdyn_name" />
<attribute name="createdon" />
<attribute name="msdyn_systemstatus" />
<attribute name="msdyn_reportedbycontact" />
<attribute name="msdyn_workorderid" />
<filter type="and">
<condition attribute="msdyn_workordertype" operator="eq" value="64904c98-e626-ec11-b6e5-002248262ebd"
uiname="Corrective" uitype="msdyn_workordertype" />
<condition attribute="msdyn_systemstatus" operator="in" value="">
<value>690970000</value>
<value>690970001</value>
<value>690970002</value>
</condition>
<filter type="or">
<condition entityname="contactrelatedaccount" attribute="contactid" operator="eq" value="{{user.id}}" />
<condition entityname="contactacct" attribute="contactid" operator="eq" value="{{user.id}}" />
</filter>
</filter>
<order attribute="createdon" descending="true" />
<link-entity name="account" from="accountid" to="msdyn_serviceaccount" alias="svcacct">
<attribute name="name" />
<link-entity name="mxl_account_contact_medxcel" from="accountid" to="accountid" link-type="outer"
alias="acct" intersect="true">
<link-entity name="contact" from="contactid" to="contactid" link-type="outer"
alias="contactrelatedaccount" intersect="true" />
</link-entity>
</link-entity>
<link-entity name="account" from="accountid" to="msdyn_serviceaccount">
<link-entity name="contact" from="parentcustomerid" to="accountid" link-type="outer" alias="contactacct" />
</link-entity>
<link-entity name="msdyn_incidenttype" from="msdyn_incidenttypeid" to="msdyn_primaryincidenttype"
alias="incident">
<attribute name="msdyn_name" />
</link-entity>
<link-entity name="msdyn_functionallocation" from="msdyn_functionallocationid" to="msdyn_functionallocation"
alias="loc">
<attribute name="msdyn_name" />
</link-entity>
<link-entity name="contact" from="contactid" to="msdyn_reportedbycontact" alias="reportedby">
<attribute name="fullname" />
</link-entity>
</entity>
</fetch>
{% endfetchxml %}