@karmaniverous/entity-manager-demo
    Preparing search index...

    Interface SearchEmailsParams

    Parameters for the searchEmails function.

    interface SearchEmailsParams {
        createdFrom?: number;
        createdTo?: number;
        pageKeyMap?: string;
        sortDesc?: boolean;
        userId?: string;
    }
    Index

    Properties

    createdFrom?: number

    Unix ms timestamp of earliest created value.

    createdTo?: number

    Unix ms timestamp of latest created value.

    pageKeyMap?: string

    Page key map from previous search page.

    sortDesc?: boolean

    Sort results in descending order by created if true.

    userId?: string

    Unique id of related User record.