thsr:remove-synonym( $entry as element(thsr:entry), $synonym as item() ) as empty-sequence()
Removes synonym $synonym from thesaurus entry $entry.
Parameters | |
---|---|
entry | A thesaurus entry. |
$synonym | A synonym to be removed from a thesaurus entry, can either be an xml element or javascript object. |
xquery version "1.0-ml"; import module namespace thsr="http://marklogic.com/xdmp/thesaurus" at "/MarkLogic/thesaurus.xqy"; thsr:remove-synonym(thsr:lookup("/myThsrDocs/roget.xml", "car")[1], <thsr:synonym> <thsr:term>Fiat</thsr:term> </thsr:synonym>)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.