scaffolding.input.xqy.triples.xqy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-data-hub Show documentation
Show all versions of marklogic-data-hub Show documentation
Library for Creating an Operational Data Hub on MarkLogic
xquery version "1.0-ml";
module namespace plugin = "http://marklogic.com/data-hub/plugins";
declare namespace envelope = "http://marklogic.com/data-hub/envelope";
declare option xdmp:mapping "false";
(:~
: Create Triples Plugin
:
: @param $id - the identifier returned by the collector
: @param $content - the output of your content plugin
: @param $headers - the output of your headers plugin
: @param $options - a map containing options. Options are sent from Java
:
: @return - zero or more triples
:)
declare function plugin:create-triples(
$id as xs:string,
$content as item()?,
$headers as item()*,
$options as map:map) as sem:triple*
{
()
};
© 2015 - 2024 Weber Informatics LLC | Privacy Policy