
flexrep:pull-get-http-options( $pull as element(flexrep:pull) ) as element(flexrep:http-options)
This function returns the HTTP options associated with the specified pull configuration.
| Parameters | |
|---|---|
| pull |
The pull replication configuration returned by the
flexrep:pull-get function.
|
(: Execute against a Replica database. :)
xquery version "1.0-ml";
import module namespace flexrep = "http://marklogic.com/xdmp/flexible-replication"
at "/MarkLogic/flexrep.xqy";
let $pull-config := flexrep:pull-get(9535475951259984368, fn:true())
return flexrep:pull-get-http-options($pull-config)
(: Returns the HTTP options associated with the specified pull configuration. :)