flexrep.pullGetDomainId( pull as element(flexrep.pull) ) as (Number|String)
This function returns the ID of the domain associated with the specified pull configuration.
Parameters | |
---|---|
pull | The pull configuration. |
// Execute against a Replica database. const flexrep = require('/MarkLogic/flexrep'); for (let pullConfig of flexrep.pullGetAll()) { flexrep.pullGetDomainId(pullConfig); } // Returns the domain IDs associated with each pull configuration.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.