Type alias RunQueriesWithCacheCheckResponse<T>

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

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

Type Parameters

  • T = unknown

Type declaration

  • Optional errorMessage?: string

    Overall error message if success is false

  • results: RunQueryWithCacheCheckResult<T>[]

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

  • success: boolean

    Whether the overall operation succeeded