Hi, I’m struggling today with tying these architec...
# orm-help
h
Hi, I’m struggling today with tying these architectural pieces together. Specifically - I have two external graphql api’s, and a few Rest ones to query from my backend server. On my backend server I do authorisation, authentication, stitching, decorate my api, etc. Question is how should I integrate with the external graphql apis please? At moment I am looking at using apollo-client on my Prisma (or possibly Apollo) Server. Any suggestions most welcome!
h
You can make multiple apollo clients that interact with different graphql endpoints. You can also use schema stitching so that you can combine multiple remote graphql endpoints to a single graphql endpoints.
👍 1