| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| @apollo_server@5.2.0 source code.tar.gz | 2025-11-21 | 2.4 MB | |
| @apollo_server@5.2.0 source code.zip | 2025-11-21 | 2.5 MB | |
| README.md | 2025-11-21 | 1.0 kB | |
| Totals: 3 Items | 4.9 MB | 0 | |
Minor Changes
-
#8161
51acbebThanks @jerelmiller! - Fix an issue where some bundlers would fail to build because of the dynamic import for the optional peer dependency on@yaacovcr/transformintroduced in@apollo/server5.1.0. To provide support for the legacy incremental format, you must now provide thelegacyExperimentalExecuteIncrementallyoption to theApolloServerconstructor.```ts import { legacyExecuteIncrementally } from '@yaacovcr/transform';
const server = new ApolloServer({ // ... legacyExperimentalExecuteIncrementally: legacyExecuteIncrementally, }); ```
If the
legacyExperimentalExecuteIncrementallyoption is not provided and the client sends anAcceptheader with a value ofmultipart/mixed; deferSpec=20220824, an error is returned by the server.