(queryKey: readonly unknown[])
| 536 | * Read cached data. |
| 537 | */ |
| 538 | export function getActivityQueryData<T>(queryKey: readonly unknown[]): T | undefined { |
| 539 | const key = serializeQueryKey(queryKey) |
| 540 | return getCacheEntry<T>(key)?.data |
| 541 | } |
| 542 | |
| 543 | /** |
| 544 | * Write cached data (optimistic updates). |
no test coverage detected