github apollographql/apollo-server @apollo/server@5.3.0

12 hours ago

Minor Changes

  • #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,
      },
    });

Don't miss a new apollo-server release

NewReleases is sending notifications on new releases.