QueryClient
interface QueryClient
A Query client, which allows you to make queries actor and handle QueryKey and InfiniteQueryKey.
Inheritors
Functions
Link copied to clipboard
abstract fun <T, S> getInfiniteQuery(key: InfiniteQueryKey<T, S>, marker: Marker = Marker.None): InfiniteQueryRef<T, S>
Gets the InfiniteQueryRef by the specified InfiniteQueryKey.
Link copied to clipboard
abstract fun <T, S> prefetchInfiniteQuery(key: InfiniteQueryKey<T, S>, marker: Marker = Marker.None): Job
Prefetches the infinite query by the specified InfiniteQueryKey.
Link copied to clipboard