export type FilterOperator = '=' | '<' | '>' | '<=' | '>=' | '!' | '<>' | '!<>' | '~' | '!~' | '.~' | '~.' | '!.~' | '!~.';
export interface QueryFilter {
    id: string;
    type: 'list' | 'date' | 'string' | 'numeric' | 'boolean' | 'enum';
    field: string;
    value?: any | any[];
    activeFalseValue?: any | any[];
    active?: boolean;
    operator: FilterOperator;
}
