p:remove

p:remove(
   $pipeline-name as xs:string
) as empty-sequence()

Summary

Remove the named pipeline. An error is raised if no such pipeline exists.

Parameters
pipeline-name The name of the pipeline to remove.

Example

  xquery version "1.0-ml";
  import module namespace p = "http://marklogic.com/cpf/pipelines" 
		  at "/MarkLogic/cpf/pipelines.xqy";

  p:remove( "Empty" )
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy