github apollographql/apollo-server @apollo/server@4.8.0

latest releases: @apollo/server@4.11.0, @apollo/server-integration-testsuite@4.11.0, @apollo/server@4.10.5...
14 months ago

Minor Changes

  • #7634 f8a8ea08f Thanks @dfperry5! - Updating the ApolloServer constructor to take in a stringifyResult function that will allow a consumer to pass in a function that formats the result of an http query.

    Usage:

    const server = new ApolloServer({
      typeDefs,
      resolvers,
      stringifyResult: (value: FormattedExecutionResult) => {
        return JSON.stringify(value, null, 2);
      },
    });

Don't miss a new apollo-server release

NewReleases is sending notifications on new releases.