Interface TableExpressionRangeFilterV3

interface TableExpressionRangeFilterV3 {
    range: {
        gt?: TableExpressionFilterValueRange;
        gte?: TableExpressionFilterValueRange;
        lt?: TableExpressionFilterValueRange;
        lte?: TableExpressionFilterValueRange;
        property: DMSFilterProperty;
    };
}

Properties

Properties

Matches items that contain terms within the provided range.

The range must include both an upper and a lower bound. It is not permitted to specify both inclusive and exclusive bounds together. E.g. gte and gt. gte: Greater than or equal to. gt: Greater than. lte: Less than or equal to. lt: Less than.