interface DocumentFilterRange {
    range: {
        gt?: number;
        gte?: number;
        lt?: number;
        lte?: number;
        property: DocumentFilterProperty;
    };
}

Properties

Properties

range: {
    gt?: number;
    gte?: number;
    lt?: number;
    lte?: number;
    property: DocumentFilterProperty;
}

Matches items that contain terms within the provided range. Range must include both an upper and a lower bound. It is not allowed to specify both inclusive and exclusive bounds (like gte, gt) together. gte: Greater than or equal to. gt: Greater than. lte: Less than or equal to. lt: Less than.

{"property":["createdTime"],"gte":1609459200000,"lt":1640995200000}