Unclaimed project
Are you a maintainer of apollo-server? Claim this project to take control of your public changelog and roadmap.
Changelog
🌍 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.
#8062 8e54e58 Thanks @cristunaranjo! - Allow configuration of graphql execution options (maxCoercionErrors)
const server = new ApolloServer({
typeDefs,
resolvers,
executionOptions: {
maxCoercionErrors: 50,
},
});
#8014 26320bc Thanks @mo4islona! - Expose graphql validation options.
const server = new ApolloServer({
typeDefs,
resolvers,
validationOptions: {
maxErrors: 10,
},
});