#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,
},
});
Fetched April 11, 2026