@samply/lens
    Preparing search index...

    Type Alias DateRangeCategory

    A catalogue item that lets the user specify a date range by picking an earliest and a latest date. The user can omit one of the dates to express earlier than or later than constraints.

    type DateRangeCategory = {
        fieldType: "date";
        infoButtonText?: string[];
        key: string;
        max?: string;
        min?: string;
        name: string;
        system: string;
        type: "BETWEEN";
    }
    Index

    Properties

    fieldType: "date"
    infoButtonText?: string[]
    key: string

    A key that uniquely identifies the catalogue item. It is typically used to look up the CQL snippet for that item.

    max?: string

    The latest date that the user can pick

    date

    min?: string

    The earliest date that the user can pick

    date

    name: string

    The item's user-facing display name

    system: string
    type: "BETWEEN"