aws-lambda-graphql
aws-lambda-graphql copied to clipboard
Scaling related questions
I have been enjoying using this library and I have a few questions about the scaling.
If I am going to add more lambda functions and split resolvers into different lambda functions, what can I do? Is it feasible with the package?
How'd you split the resolvers to different lambdas? I guess it could be possible but not sure whether it's possible with current implementation of this package as the connection management is handled directly in lambda handler and you need to use correct connection ids, to communicate with subscribers.
So the problem would be how to recreate proper context in resolvers.