flexrep.getDomainName

flexrep.getDomainName(
   domain-id as (Number|String)
) as String

Summary

Get a CPF domain's name.

Parameters
domain-id The CPF domain ID.

Example

  const flexrep = require('/MarkLogic/flexrep');

  // Obtain the domain ID from the database used by the Master to enable CPF.
  const domain = xdmp.eval(
    'const dom = require("/MarkLogic/cpf/domains");' +
      'fn.data(dom.get("Default Master").xpath("//dom:domain-id"));',
       null,
         {
          'database' : xdmp.database('Triggers')
         });

   const cfg = flexrep.configurationCreate(domain);
   const domainId = flexrep.configurationGetId(cfg);

flexrep.getDomainName(domainId);
   

Required Privileges

http://marklogic.com/xdmp/privileges/flexrep-user

Powered by MarkLogic Server | Terms of Use | Privacy Policy