Loading TOC...

thsr.addSynonym

thsr.addSynonym(
   entry as element(thsr.entry),
   synonym as element(thsr.synonym)|Object
) as null

Summary

Adds a synonym to the specified thesaurus entry.

Parameters
entry A thesaurus entry.
synonym A synonym to add to a thesaurus entry, can either be an xml element or javascript object.

Usage Notes

The synonym and the entry specified must conform to the thesaurus schema and must be namespace-qualified with the "http://marklogic.com/xdmp/thesaurus" namespace.

Example

  var thsr = require("/MarkLogic/thesaurus");
  declareUpdate();

  thsr.addSynonym(thsr.lookup("/myThsrDocs/roget.xml", 
                               "car")[1],
                 {"term":"Alfa Romeo"})
  

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.