QueryMutableClient
Interface for causing side effects on Query under the control of QueryClient.
QueryEffect is designed to allow side effects such as updating, deleting, and revalidating queries. It is useful for handling MutationKey.onQueryUpdate after executing Mutation that affects Query data.
Inheritors
Functions
Link copied to clipboard
Retrieves data of the InfiniteQueryKey associated with the id.
Link copied to clipboard
Link copied to clipboard
Invalidates the queries by the specified InvalidateQueriesFilter.
Link copied to clipboard
Invalidates the queries by the specified UniqueId.
Link copied to clipboard
Removes the queries by the specified RemoveQueriesFilter.
Link copied to clipboard
Removes the queries by the specified UniqueId.
Link copied to clipboard
Resumes the queries by the specified ResumeQueriesFilter.
Link copied to clipboard
Resumes the queries by the specified UniqueId.
Link copied to clipboard
abstract fun <T, S> updateInfiniteQueryData(id: InfiniteQueryId<T, S>, edit: QueryChunks<T, S>.() -> QueryChunks<T, S>)
Updates the data of the InfiniteQueryKey associated with the id.
Link copied to clipboard