型・APIリファレンス
    Preparing search index...

    Type Alias SavedSearchParams

    SavedSearch検索パラメータ

    type SavedSearchParams = {
        distinct?: boolean;
        filterExpression?: string;
        filterValues?: {
            from?: string;
            in?: string;
            operation: string;
            propName: string;
            savedList?: {
                colIndex: number;
                colLabel?: string;
                name?: string;
                oid: string;
            };
            to?: string;
        }[];
        includeTotalCount?: boolean;
        limit?: number;
        listedId: string;
        offset?: number;
        resultFilterExpression?: string;
        resultFilterValues?: {
            from?: string;
            in?: string;
            operation: string;
            selectId: string;
            to?: string;
        }[];
        sortKey?: number;
        sortType?: "ASC"
        | "DESC";
    }
    Index

    Properties

    distinct?: boolean

    重複除去

    filterExpression?: string

    カスタムフィルタ式

    filterValues?: {
        from?: string;
        in?: string;
        operation: string;
        propName: string;
        savedList?: {
            colIndex: number;
            colLabel?: string;
            name?: string;
            oid: string;
        };
        to?: string;
    }[]

    フィルタ値リスト

    includeTotalCount?: boolean

    総件数を含めるか

    limit?: number

    取得件数上限

    listedId: string

    保存リストOID

    offset?: number

    オフセット

    resultFilterExpression?: string

    カスタム結果フィルタ式

    resultFilterValues?: {
        from?: string;
        in?: string;
        operation: string;
        selectId: string;
        to?: string;
    }[]

    結果フィルタ値リスト

    sortKey?: number

    ソート列番号(上書き)

    sortType?: "ASC" | "DESC"

    ソート順(上書き)