Loading TOC...

cts.tripleRangeQueryOptions

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

Summary

Returns the options for 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.tripleRangeQueryOptions(query);
  =>  ()

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