How to quickly setup multiple Graphql endpoints in Apollo Client and Codegen [React]

Yassir Hartani
2 min readNov 10, 2022

Recently I had to add a new Graphql endpoint, as I was using Codegen and typescript I had to make sure that I’ll benefit from type-checking on both of the endpoints.

In this post, you will learn how to quickly setup a new Graphql endpoint in 2 easy Steps.

Step1: Add the new endpoint to Apollo Client

If you don’t use Typescript and Codegen this step is all you need, here you just need to add the clientName in every query and mutation the request needs to goes to the endpoint2.
Credit should go to the owner of this StackOverflow answer.

Step2: Generate the Graphql schema and types with Codegen

With multiple endpoints, we’ll need to generate multiple schemas which will generate the API types in separate files.

To do this we’ll need to start by writing Graphql requests of each endpoint in separate files, for example, the endpoint1 query will go under **.grapqhl.ts the file name, and endpoint2 will be in **.graphqlEndpoint2.ts
This way we can target each schema generation easily in codegen.ts.

Finally using useQuery and adding the context clientName can be a bit tricky and redundant to solve that we’ll use the typescript-react-apollo plugin to generate typed apollo hooks so instead of this 👇

You can use the generated apollo hook getCustomersQuery like this 👇

To achieve this behavior we need to add some configs inside the Codegen config file 👇

What made it possible to use apollo hooks with the clientName is the defaulsBaseOptions from typescript-react-apollo you can check this PR for more details.

Thanks for reading 📚

Github | Twitter ✈️

--

--