Is sorting by pointer already supported in ML 8? I want to achieve a similar below:
<options xmlns="http://marklogic.com/appservices/search"> <sort-order collation="http://marklogic.com/collation/en/S1/EO/CU/MO" type="xs:string" direction="ascending"> <path-index>attritbutes//name</path-index> </sort-order> </options>
If not, is there a way to achieve this? I have several elements with the same name from different parent nodes or from the root element, so I can not use only
<options xmlns="http://marklogic.com/appservices/search"> <sort-order collation="http://marklogic.com/collation/en/S1/EO/CU/MO" type="xs:string" direction="ascending"> <element ns="" name="name"/> </sort-order> </options>
kdm06 source share