Jonghyeon Ko

Results 145 comments of Jonghyeon Ko

And We support @tanstack/react-query@^5 too by @suspensive/react-query(internally @suspensive/react-query-4, @suspensive/react-query-5 made by @gwansikk). @suspensive/react-query-5 re-export to help migration from "TanStack Query v4 + @suspensive/react-query" to "TanStack Query v5 + @suspensive/react-query" ###...

@gwansikk Could you support @2-NOW later to make @suspensive/react-query-next-experimental? In my opinion, you will be best person to support it. @kangju2000 @bigsaigon333 @SEOKKAMONI I unassigned you guys to narrowen assignee...

```tsx const queryCache = createCache({ invalidateInterval: 2000, }) queryCache.options() queryCache.options() const textQueryCache = () => queryCache.options({ cacheKey: [111,], cacheFn: () => Promise.resolve({ text: 5 }) }) return ( {(cached) =>...

```tsx const unreachableUnique = symbol() const createCache = ({ defaultOptions, options }) => { const cacheUnique = symbol() const context = createContext(defaultOptions) return { [unreachableUnique]: { cacheUnique, context }, //...

I thought there is no name cachestore like below ```tsx const unreachableUnique = symbol() const createCache = ({ defaultOptions, options }) => { const cacheUnique = symbol() const context =...

I changed description for this repository like below after #1072 ### AS IS "Packages to use React Suspense easily" ### TO BE "Manage asynchronous operations, timing, error handling, detecting intersection...

> However, I wanted to add some words after `easily`, which is and `declaratively` I added it now! thanks for your feedback!

> I believe that we can provide not only any hook related to asynchronous operations but also declarative React components corresponding to those hooks. The relationship between useSuspenseQuery and is...