apollo-server
apollo-server copied to clipboard
🌍 Spec-compliant and production ready JavaScript GraphQL server that lets you develop in a schema-first way. Built for Express, Connect, Hapi, Koa, and more.
- more information on the file where the server is defined and where it needs to be in the project - more information on the steps needed to configure serverless...
I think it would be very beneficial to explicitly show how to use Memcached, Redis, or a custom implementation to do response caching using the gateway. It was not obvious...
These examples don't work "out-of-the-box". To some, it might not be obvious that the `startApolloServer` function must be called to take effect. Fixes #6464
Adding additional documentation on accessing request headers when dep…loying Apollo Server in an Azure function. Big picture: Running Apollo in an Azure Function where Apollo access protected backend APIs a...
As described in [the roadmap](https://github.com/apollographql/apollo-server/blob/main/ROADMAP.md), Apollo Server 4 will shift from the model of "9 web framework integrations maintained by a team who only uses one of them and nope,...
## Package name and version `apollo-datasource-rest V3.6.1` ## Expected behavior - I'm able to control whether to enable memoization or not - If I opt for not using memoization then...
Our configuration for deep imports is not exactly intuitive. We need to add things in a number of places (exports map, nested package.json files, and smoke test additions). Some documentation...
`apollo-datasource-rest` has a `HTTPCache` that probably works fine, but it is never invoked because `RESTDataSource` caches the promise itself, the first time it is called (for GET requests). This seems...
- Package name and version ``` "apollo-datasource-rest": "^0.13.0", "apollo-server": "^2.24.1", "graphql": "^15.5.0" ``` - Expected behavior - Expected it to not cache the api response when the response has header...
https://github.com/apollographql/apollo-server/blob/54416e28835adb0117f89935c11aa270248272d5/packages/apollo-server-core/src/requestPipeline.ts#L247-L250 https://github.com/apollographql/apollo-server/blob/54416e28835adb0117f89935c11aa270248272d5/packages/apollo-server-core/src/requestPipeline.ts#L436-L441 In (at least) these two cases, if the end hook itself throws, we then call it _again_ in the catch block (but with no try/catch if it throws!)....