admin.databaseForeignReplicaGetReplicationEnabled( foreign-replica as element(db.foreignReplica) ) as Boolean
This function returns the enabled flag from the replica database configuration.
Parameters | |
---|---|
foreign-replica | The configuration element for the foreign replica database. |
let admin = require("/MarkLogic/admin.xqy") let cfg = admin.getConfiguration() let freplica = admin.databaseGetForeignReplicas(cfg, xdmp.database("Documents")) admin.databaseForeignReplicaGetReplicationEnabled(fn.head(freplica))