kaios-types
    Preparing search index...

    Interface ContactFindOptions

    interface ContactFindOptions {
        filterBy?: string | string[];
        filterLimit?: number;
        filterOp?: string;
        filterValue?: string;
        sortBy?: string;
        sortOrder?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    filterBy?: string | string[]

    The field(s) to filter by. Can be a string or an array of strings.

    filterLimit?: number

    The maximum number of results to return. Default is 0 (no limit).

    filterOp?: string

    The operator to use for filtering (e.g., "equals", "startsWith", "match").

    filterValue?: string

    The string to search for.

    sortBy?: string

    The field to sort by ("givenName" or "familyName").

    sortOrder?: string

    The sort order ("ascending" or "descending"). Default is "ascending".