interface DateFieldExpression {
    field: string;
    negate?: boolean;
    operator: NumericOperator;
    value: string;
}

Hierarchy (View Summary)

Properties

field: string

The field name.

negate?: boolean

If true, the inverse expression will be created.

operator: NumericOperator

The operator to use when comparing field and value. Options for the operator are: "isExactly" | "lowerThan" | "lowerThanOrEqual" | "greaterThan" | "greaterThanOrEqual".

value: string

The value to match against the field. For absolute dates, please use form YYYY/MM/DD. For relative dates, please refer to the supported date/time operators.