Type alias QueryConfigWithSelect<TData, TError, TSelectData>

QueryConfigWithSelect<TData, TError, TSelectData>: Pick<UseQueryOptions<TData, TError, TSelectData>, "cacheTime" | "enabled" | "isDataEqual" | "select" | "staleTime" | "structuralSharing" | "suspense" | "onError" | "onSettled" | "onSuccess"> & {
    scopeKey?: string;
}

Type Parameters

  • TData

  • TError

  • TSelectData = TData

Type declaration

  • Optional scopeKey?: string

    Scope the cache to a given context.

Generated using TypeDoc