The xquery accessor executes xquery scripts. The xquery script is provided through the operator, it may be a URI to a plain/text
source or XML as text enclosed in an <xquery>
element.
This xquery implementation uses the Saxon XQuery engine. Xqueries are compiled and cached for optimal performance.
Documents can be sourced by the XQuery - the NetKernel infrastructure is used to resolve URI resources.
So for example if we wanted to query a document ffcpl:/lear.xml
<xquery>
let $operand := document("ffcpl:/lear.xml")/PLAY/ACT[1]/SCENE[1]
return <SPEECHES> {$operand//SPEECH[SPEAKER='GLOUCESTER']} </SPEECHES>
</xquery>
Alternatively documents can be passed to a script as a named parameter argument - the argument name must be declared as a variable in
the XQuery. So for example if we wanted to pass a document lear.xml as an argument we would have
<instr>
<type>xquery</type>
<operator>myquery.xml</operator>
<lear>ffcpl:/lear.xml</lear>
<target>this:response</target>
</instr>
And in the XQuery we would need to declare an external variable with the same name.
declare variable $lear as node() external;
XQuery can also be used as a generative scripting language
for dynamically creating documents with or without reference to external documents or passed arguments.