
admin.clusterGetForeignReplicaDatabases( config as element(configuration), foreign-cluster-id as (Number|String), database-ids as (Number|String)[] ) as Sequence
This function is executed on the master cluster to return the replication configuration for the specified local database to the specified foreign replica cluster.
  let admin = require("/MarkLogic/admin.xqy")
  let cfg = admin.getConfiguration()
  let dbid = admin.databaseGetId(cfg, "Documents")
  for(let cid of admin.clusterGetForeignClusterIds(cfg).toObject())
    admin.clusterGetForeignReplicaDatabases(cfg, cid, dbid)
     
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.