
admin:database-range-path-index( $database-id as xs:unsignedLong, $scalar-type as xs:string, $pathexpr as xs:string, $collation as xs:string?, $range-value-positions as xs:boolean, $invalid-values as xs:string ) as element(db:range-path-index)
This function constructs a path range index specification.
  xquery version "1.0-ml";
  import module namespace admin = "http://marklogic.com/xdmp/admin"
      at "/MarkLogic/admin.xqy";
  admin:database-range-path-index(
  xdmp:database('Documents'),
  "string",
  "/a/b/c",
  "http://marklogic.com/collation/",
  fn:false(),
  "ignore")
  =>
  <range-path-index xmlns="http://marklogic.com/xdmp/database">
    <scalar-type>string</scalar-type>
    <path-expression>/a/b/c</path-expression>
    <collation>http://marklogic.com/collation/</collation>
    <range-value-positions>false</range-value-positions>
    <invalid-values>ignore</invalid-values>
  </range-path-index>
    
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.