Hacker News new | ask | show | jobs
by krschultz 2996 days ago
The endpoint that resolves GraphQL requests scales horizontally, so the answer is likely a high number.

I think what you're really getting at it is how many different GraphQL schemas are there? In general I would expect the answer to be one for the whole company, unless the services are truly not related at all. The power of GraphQL comes from being able to compose random sets of data that are not obvious up front.

1 comments

Schema stitching[0] is a rather powerful tool so in the end it doesn't really matter that much whether you have one schema or hundred of them as long as you have an idea of the available schemas.

[0] https://www.apollographql.com/docs/graphql-tools/schema-stit...