releases.shpreview
Apollo GraphQL/Apollo Server/@apollo/server@4.8.0

@apollo/server@4.8.0

$npx -y @buildinternet/releases show rel_QaEU98kHL_1wCsOC-PdYH

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

Fetched April 11, 2026