#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