Member Junction
    Preparing search index...

    Type Alias RunQueriesWithCacheCheckResponse<T>

    Response from RunQueriesWithCacheCheck - contains results for each query in the batch

    type RunQueriesWithCacheCheckResponse<T = unknown> = {
        errorMessage?: string;
        results: RunQueryWithCacheCheckResult<T>[];
        success: boolean;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    errorMessage?: string

    Overall error message if success is false

    Results for each query in the batch, in the same order as the input

    success: boolean

    Whether the overall operation succeeded