interface RangeFilterV3 {
    range: {
        gt?: FilterValueRange;
        gte?: FilterValueRange;
        lt?: FilterValueRange;
        lte?: FilterValueRange;
        property: DMSFilterProperty;
    };
}

Properties

Properties

range: {
    gt?: FilterValueRange;
    gte?: FilterValueRange;
    lt?: FilterValueRange;
    lte?: FilterValueRange;
    property: DMSFilterProperty;
}

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.