the default caching mechanism for apollo-server. For other questions related to caching with Apollo, please use the [apollo-server] tag.
Apollo Server natively let you cache responses in memory. To allow this type of cache, just add
cacheControl: {
defaultMaxAge: <seconds>,
},
to your Apollo Server configuration. Refer to the official Documentation about caching with Apollo Server for more informations about the available plugins and caching tecniques