cts.elementAttributeRangeQueryElementName

cts.elementAttributeRangeQueryElementName(
   query as cts.elementAttributeRangeQuery
) as Sequence

Summary

Returns the QNames used to construct the specified query.

Parameters
query A query.

Example

const query = cts.elementAttributeRangeQuery(
              xs.QName('function'),
              xs.QName('name'), '>',
              'MarkLogic Corporation');
cts.elementAttributeRangeQueryElementName(query);

// Returns xs.QName('function')
Powered by MarkLogic Server | Terms of Use | Privacy Policy