Interface IListingFilter

interface IListingFilter {
    filterBlock?: number;
    key: string;
    logicOperation?:
        | ">"
        | "<"
        | "EQUAL"
        | "NOTEQUAL"
        | "IN"
        | "NOTIN"
        | "≥"
        | "≤"
        | "CONTAINSWORD";
    type?: string;
    value: | null
    | string
    | number
    | string[]
    | DateQuery
    | IDateGteCriterion
    | IDateLtCriterion
    | IDateLteCriterion
    | ILocationCriterion
    | { $ne: string }
    | { $near: Record<string, unknown> }
    | IOnElementQuery;
}

Properties

filterBlock?: number
key: string
logicOperation?:
    | ">"
    | "<"
    | "EQUAL"
    | "NOTEQUAL"
    | "IN"
    | "NOTIN"
    | "≥"
    | "≤"
    | "CONTAINSWORD"
type?: string
value:
    | null
    | string
    | number
    | string[]
    | DateQuery
    | IDateGteCriterion
    | IDateLtCriterion
    | IDateLteCriterion
    | ILocationCriterion
    | { $ne: string }
    | { $near: Record<string, unknown> }
    | IOnElementQuery