interface DateRangeFieldExpression {
    field: string;
    from: string;
    negate?: boolean;
    to: string;
}

Hierarchy (View Summary)

Properties

Properties

field: string

The field name.

from: string

The start of the range. For absolute dates, please use form YYYY/MM/DD. For relative dates, please refer to the supported date/time operators.

negate?: boolean

If true, the inverse expression will be created.

to: string

The end of the range. For absolute dates, please use form YYYY/MM/DD. For relative dates, please refer to the supported date/time operators.