cts.lsqtQueryWeight

cts.lsqtQueryWeight(
   query as cts.lsqtQuery
) as Number

Summary

Returns the weight with which the specified query was constructed.

Parameters
query A query.

Example

const query =
  cts.lsqtQuery("temporal",
                 xs.dateTime("2014-09-03T15:26:41.452342-07:00"),
		 "cached-incremental", xs.double("3.13"));
cts.lsqtQueryWeight(query);
  => 3.13
Powered by MarkLogic Server | Terms of Use | Privacy Policy