functional-models
    Preparing search index...

    Interface DatesAfterQuery

    A search that looks at dated objects after the given date.

    interface DatesAfterQuery {
        date: string;
        key: string;
        options: { equalToAndAfter: boolean };
        type: "datesAfter";
        valueType: DatastoreValueType;
    }
    Index

    Properties

    date: string

    The date value being examined.

    key: string

    The property's key

    options: { equalToAndAfter: boolean }

    Options for additional searching

    Type declaration

    • equalToAndAfter: boolean

      Should this search be equalsTo as well as after?

    type: "datesAfter"

    Distinguishes this query

    The database type.