apollo-feature-requests
apollo-feature-requests copied to clipboard
๐งโ๐ Apollo Client Feature Requests | (no ๐ please).
When dealing with complex links, it becomes necessary to retrieve data from `forward(opearation)`. At the moment there is only a mechanism for getting data by subscribing to updates and getting...
I think would be great if useFragment supports array of IDs. I understand that I can still use useQuery, but it requires a cache redirect, I would like to avoid...
### Issue Description I asked this question on the Discord server and got no response. I _think_ this is a bug, but it's possible I'm misunderstanding if/how these two features...
### Issue Description When using a subscription for subsequent query updates with `subscribeToMore`, the query's `data` is not being updated if `fetchPolicy: "no-cache"`. If `fetchPolicy` is set to `network-only`` it...
### Motivation In our project we have setup visual tests of screens that relied on Apollo for fetching information before rendering. These requests were being mocked by setting a `MockLink`...
# Problem There is a constant problem with optimistic responses when trying to delete optimistic resource before actual response comes back. When artificially created `id` is added to optimistic response...
**The Problem:** Right now there is no proper way to know if result data was taken from cache or from link. **The Solution:** Expose `fromLink` property introduced in this [PR](https://github.com/apollographql/apollo-client/pull/10597/files)...
## Description I have a local resolver for a client-side field which fetches some data from the server. The fetch that happens in that resolver can take up to 3...
When a query errors, the `retryLink` silently continues to poll without notifying the UI in any way until all retries are complete. The UI is thus unaware it is potentially...
[See original comment here](https://github.com/apollographql/router/issues/2099#issuecomment-1658086621). When `@defer` support was originally added to Apollo Client's `client.mutate` API via https://github.com/apollographql/apollo-client/pull/10368, the existing design (returning a Promise that resolves with a single value) prevented...