Replies: 1 comment
-
I just see that local-only mutation is just deprecated since 3.0 version's of apollo-client :( |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello there,
I'm developing an Angular application that uses Apollo Client to manage GraphQL queries and mutations. Due to the requirements of my application, I need to persist some GraphQL mutations when the internet is not available and resend them when the connection is re-established.
In order to implement this, I'm trying to define a client-side schema with resolvers in Apollo Angular, so I can store the mutations locally when the network is not available and resend them later. However, I'm facing some issues.
And also a client-side schema with a resolver in my Apollo Client configuration:
It is possible to directly mutate with client side operation or does we must to use writeQuery method's of cache
cache.writeQuery({...})
?I would appreciate any help or direction :)
Beta Was this translation helpful? Give feedback.
All reactions