
thsr:query-lookup( $uri as xs:string*, $query as cts:query, [$output-kind as xs:string] ) as item()*
Returns a sequence of all entries that are found by looking up terms in the query and/or subqueries of $query in the thesaurus document(s) at $uri.
  xquery version "1.0-ml";
  import module namespace 
	   thsr="http://marklogic.com/xdmp/thesaurus" 
                           at "/MarkLogic/thesaurus.xqy";
  let $query := cts:word-query("weary")
  return 
      thsr:query-lookup("/myThsrDocs/thesaurus.xml", 
                        $query)
   => All entries for the term "weary" in the specified 
      thsesaurus document
  
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.