How to change the defautMaxAge value set in the ApolloCacheControl plugin and how can we incrementally roll out this change?

createServer: (httpServer) => {
    const cache = new ServerCache();
    const plugins = [
      responseCachePlugin.default({
        sessionId: sessionIdFromRequest,
        extraCacheKeyData: extraCacheKeyDataFromRequest,
      }),
      // Enables cache control, default max age to 300 seconds
      ApolloServerPluginCacheControl({ defaultMaxAge: 300 }),
 ....

return new ApolloServer({
typeDefs: gql${schema},
resolvers,

)}