Loading TOC...

fn.zeroOrOne

fn.zeroOrOne(
   arg as Sequence
) as Item?

Summary

Returns $arg if it contains zero or one items. Otherwise, raises an error [err:FORG0003].

For detailed type semantics, see Section 7.2.16 The fn:zero-or-one, fn:one-or-more, and fn:exactly-one functions[FS].

Parameters
arg The sequence of items. If you pass in a single value, it is treated as a Sequence with that single item; therefore, if you pass in an array, the array is treated as a single value (not as one value for each item in the array). If you mean to pass in the values of each item in the array, then you can call xdmp.arrayValues on the array.

Example

fn.zeroOrOne("hello")

=> "hello"

fn.zeroOrOne(xdmp.arrayValues(["hello", "goodbye"]))

=> XDMP-MORETHANONEITEM exception (because there are two items)

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.