functional-models
    Preparing search index...

    Interface DatesBeforeQuery

    A search query that looks at dates before the given date.

    interface DatesBeforeQuery {
        date: string;
        key: string;
        options: { equalToAndBefore: boolean };
        type: "datesBefore";
        valueType: DatastoreValueType;
    }
    Index

    Properties

    date: string

    The date value being examined.

    key: string

    The property's key.

    options: { equalToAndBefore: boolean }

    Options for additional searching

    Type declaration

    • equalToAndBefore: boolean

      Should this search be equalsTo as well as before?

    type: "datesBefore"

    Distinguishes this query

    The database value type.