-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refetch from useSuspenseQuery doesn`t return the updated data with fetchPolicy: 'cache-first' #11718
Comments
Hey @berzhavycha 👋 This is an interesting one and after digging into it a bit, I'd classify this as "working as expected". Let me explain why: I see you're using Without going into too much technical detail, I'll just say that you're running into issues due to the way we've setup the hook for Suspense promise caching and support for React transitions. Instead, I see this is a misuse of the To be honest, it is very unlikely I will put much effort to "fix" this to work as you're expecting with this particular pattern because the adjustments needed in Apollo Client have a high probability of breaking support for React transitions. This is much easier to fix on your end with some adjustments to how you're consuming the hook. Without further ado, try one of the following two things to get this working:
I'm able to get the desired behavior you're after with these changes:
- const { data } = useFetchTasks();
+ const { data, refetch } = useFetchTasks();
- <button onClick={() => onAddTask(title)}>Add Task</button>
+ <button onClick={() => onAddTask(title).then(() => refetch())}>Add Task</button>
export const useAddTask = (): { onAddTask: (title: string) => Promise<void> } => {
const [addTaskMutation] = useMutation<AddTaskData, AddTaskVariables>(ADD_TASK);
- const { refetch } = useFetchTasks();
- const onAddTask = async (title: string): void => {
+ const onAddTask = async (title: string): Promise<void> => {
await addTaskMutation({ variables: { input: { title } } });
- refetch();
};
return { onAddTask };
};
Option 1 is probably the simplest, but if you prefer the Hope this helps! |
Hey @berzhavycha 👋 I see you reacted to my comment above, so I'm assuming the above works for you and I will go ahead and close this issue. Feel free to reopen if I've made a mistake in my assumption! |
Do you have any feedback for the maintainers? Please tell us by taking a one-minute survey. Your responses will help us understand Apollo Client usage and allow us to serve you better. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Issue Description
When the refetchQueries option in useMutation isn't triggering the fallback in the Suspense component, we have to resort to using refetch to achieve this goal. However, it seems that with fetchPolicy: 'cache-first', we cannot obtain the updated data. In the provided reproduction, I've included the ability to add a new task to a task list. Yet, when I refetch the list of tasks, it doesn't display the new task until I refresh the page. We can resolve this by using 'cache-and-network', but in doing so, we won't see the fallback because partial data is already in the cache.
Link to Reproduction
https://github.com/berzhavycha/repro
Reproduction Steps
1 - git clone https://github.com/berzhavycha/repro.git
2 - cd web
3 - npm i
4 - npm run dev
5 - cd ../server
6 - npm i
7 - npm run start:dev
@apollo/client
version3.9.8
The text was updated successfully, but these errors were encountered: