cts.periodRangeQueryPeriod( query as cts.periodRangeQuery ) as Sequence
Returns the period used to construct the specified query.
Parameters | |
---|---|
query | A query. |
const period = cts.period(xs.dateTime("2001-05-31T09:30:10-08:00"), xs.dateTime("2003-05-31T09:30:10-08:00")); const query = cts.periodRangeQuery("period1","aln_equals", period); cts.periodRangeQueryPeriod(query); => cts.period(xs.dateTime("2001-05-31T17:30:10"), xs.dateTime("2003-05-31T17:30:10"))