Type Alias TaskRunSearchFilter

Specifies a single filter criterion to apply when searching task run history.

type TaskRunSearchFilter = {
    field: TaskRunSearchFilterField;
    operator: TaskRunSearchFilterOperator;
    value: string[];
}
Index

Properties

Properties

The run-history field to filter on.

Filter operator.

  • IN / NOT_IN: exact match against the values list (recommended for ID, STATUS, SUB_STATUS).
  • BETWEEN: only valid with the PERIOD field. The value list must contain two ISO-8601 timestamps (start, end).
value: string[]