Minor Changes
-
#8062
8e54e58Thanks @cristunaranjo! - Allow configuration of graphql execution options (maxCoercionErrors)const server = new ApolloServer({ typeDefs, resolvers, executionOptions: { maxCoercionErrors: 50, }, });
-
#8014
26320bcThanks @mo4islona! - Exposegraphqlvalidation options.const server = new ApolloServer({ typeDefs, resolvers, validationOptions: { maxErrors: 10, }, });