xdmp:node-kind( $node as node() ) as xs:string
Returns an xs:string
representing the node's kind: either
"document", "element", "attribute", "text", "namespace",
"processing-instruction", "binary", or "comment".
The fn:node-kind
builtin was dropped from the final XQuery 1.0
spec. This is the equivalent function in the xdmp:
namespace
carried over for MarkLogic 1.0 dialects.
Parameters | |
---|---|
node | The node whose kind is to be returned. |
let $x := <hello><goodbye>1</goodbye></hello> return xdmp:node-kind($x/node()) => element
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.