Preparing search index...
    interface ISearchQuery {
        asOf?: string;
        count?: number;
        countOnly: boolean;
        drafts: boolean;
        entity: string;
        facets?: FACETS[];
        fetchAll: boolean;
        formFields?: IFormField<string | number | boolean>[];
        formGroups?: IFormGroup[];
        page?: number;
        returnFields: string[];
        searchDataType: SearchDataType;
        searchFields: string[];
        sortFields?: ISortField[];
        start?: number;
        supplementary?: ISupplementary[];
        supplementaryGroups?: IDataSearchGroup[];
        text?: string;
        totalCount: boolean;
    }
    Index

    Properties

    asOf?: string
    count?: number
    countOnly: boolean
    drafts: boolean
    entity: string
    facets?: FACETS[]
    fetchAll: boolean
    formFields?: IFormField<string | number | boolean>[]
    formGroups?: IFormGroup[]
    page?: number
    returnFields: string[]
    searchDataType: SearchDataType
    searchFields: string[]
    sortFields?: ISortField[]
    start?: number
    supplementary?: ISupplementary[]
    supplementaryGroups?: IDataSearchGroup[]
    text?: string
    totalCount: boolean