| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| @apollo_server@5.3.0 source code.tar.gz | 2026-01-21 | 2.4 MB | |
| @apollo_server@5.3.0 source code.zip | 2026-01-21 | 2.5 MB | |
| README.md | 2026-01-21 | 917 Bytes | |
| Totals: 3 Items | 4.9 MB | 1 | |
Minor Changes
-
#8062
8e54e58Thanks @cristunaranjo! - Allow configuration of graphql execution options (maxCoercionErrors)js const server = new ApolloServer({ typeDefs, resolvers, executionOptions: { maxCoercionErrors: 50, }, }); -
#8014
26320bcThanks @mo4islona! - Exposegraphqlvalidation options.js const server = new ApolloServer({ typeDefs, resolvers, validationOptions: { maxErrors: 10, }, });