Posts
Members
Info
Apollo server Lambda
Hi All , Any one knows about a github which has a better example of serverless Graphql using Apollo and Express ?
0
0
Hi, how do you run subscriptions with apollo-server-lambda?
I found this: https://github.com/michalkvasnicak/aws-lambda-graphql But wanted to see if Apollo had something out of the box.
0
0
Using DataLoader for batching in multi-user API
So we have got a schema which requires us to have a resolver on an object field. Its really killing performance, so we have implemented it using a Dataloader inside our Apollo Rest Datasource. Following the guide from the Apollo docs. Say a schema looked like this: And we had a…
0
5
Dataloading across instances?
As servers scale by spawning multiple instances and even running clusters on a machine, Im wondering a few things. 1) Is there benefit to batch request across servers (and clusters) 2) Is there a OOS implementation of this? …
0
0
type field default argument not working inside query resolver
i got schema I want to ask, why default argument for itemType field, not working inside query resolver?
0
1
Code coverage using istanbul(nyc) in mocha for GraphQL API
I have surfed through internet but still I haven't got any solution. Can we do code coverage using nyc package in istanbul for graphQL API's. It is working fine and returning test results for rest API's. But I'm using the same mocha and istanbul(nyc) library for code coverage…
0
0
Apollo server error connect ETIMEDOUT
I am trying to do a load test on graphql APIs and see less than 1% failure with 5xx errors for 500 concurrent users on cluster of 3 nodes having 16 Gb and 8 CPU each. We have built the Observability around this and it seems like graphql service is trying to call micro service…
0
1
Dataloaders for caching in apollo server
Hi Guys - has anyone implemented dataloaders only for caching even a simple use of loading data would help immensely. Any suggestions / help would be appreciated. Thanks.
0
0
apollo-server-lambda automated tests
I am switching from apollo-server to apollo-server-lambda in order to make use of netlify functions. The transition went ok without any painpoints. The only problem I'm currently facing is that I cannot make apollo-server-lambda to work with apollo-server-testing which made…
0
1
apolloServer Context not being evaluated
When I query my data from the playground without a sending a header I expect to recieve the error 'you must be logged in'. That is not happening however. The queried data is returned withou errors. Any suggestions as to what I might be missing here? Also, I can't determin where…
0
2