apollo-feature-requests icon indicating copy to clipboard operation
apollo-feature-requests copied to clipboard

🧑‍🚀 Apollo Client Feature Requests | (no 🐛 please).

Results 193 apollo-feature-requests issues
Sort by recently updated
recently updated
newest added

What if a user could query `Apollo` and return all the version IDs of the client, server, router, etc of what they are using? We could add a `Query.apollo` field,...

project-apollo-client
project-apollo-server
project-apollo-federation
project-apollo-router

Client-Controlled nullability gives more power to the consumer of a GraphQL API. It allows us to specify error boundaries in GraphQL by defining if a field shall be nullable or...

project-apollo-client
project-apollo-server
project-apollo-federation

Previosly created on [react-apollo issue #2466](https://github.com/apollographql/react-apollo/issues/2466) **Intended outcome:** Use components at storybook, mocking a response for a mutation based on dynamic variables (e.g: using [HoC](https://www.apollographql.com/docs/react/api/react-apollo.html#graphql) that updates the variables and...

I would find it useful to include a mutation's variables in the `update` function parameters. This would make it easier to define most of the behaviors of a mutation in...

## Motivation I am currently developing a prototype / proof of concept for an app where the user searches for an id and gets a view of the product. I...

project-apollo-client

Recently, AWS AppSync published details of their websocket subscription workflow (https://docs.aws.amazon.com/appsync/latest/devguide/real-time-websocket-client.html). It is now possible to implement a GraphQL client using only Apollo libraries, without the need for AppSync's own...

help-wanted

apollo-cache-inmemory performs data normalisation before placing data into the cache, it does this by splitting apart the models hieararchy, giving it ids, and storing them as flat documents. The model...

I would like all my requests to be without SSR, except for those in which I explicitly indicate

Relevant code line: https://github.com/apollographql/react-apollo/blob/master/packages/common/src/types/types.ts#L62 TLDR: Currently the type for the `fetchMore` property is quite confusing to read, and possibly too complex? Could it be simplified and refactored so more of...

Hello, I would like to be able to cancel fetchMore requests in these two scenarios: 1. When the Query component unmounts Currently it seems like the initial query request will...