Loading TOC...

cts.tripleRangeQueryObject

cts.tripleRangeQueryObject(
   query as cts.tripleRangeQuery
) as Sequence

Summary

Returns the object value used to construct the specified query.

Parameters
query A query.

Example

const query =
  cts.tripleRangeQuery(
    sem.iri("http://example.com/Mark"),
    sem.iri("http://example.com/ns/person#age"),
    50,
    "<");
cts.tripleRangeQueryObject(query);
  => 50

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