Member Junction
    Preparing search index...

    Type Alias RunQueryWithCacheCheckParams

    Parameters for a single RunQuery request with optional cache status. When cacheStatus is provided, the server will check if the cache is current before executing the full query.

    type RunQueryWithCacheCheckParams = {
        cacheStatus?: RunQueryCacheStatus;
        params: RunQueryParams;
    }
    Index

    Properties

    Properties

    cacheStatus?: RunQueryCacheStatus

    Optional cache status from the client. If provided, the server will use the Query's CacheValidationSQL to check if cached data is still current. If not provided, the server will always execute the query.

    The standard RunQuery parameters