I have ApolloServer running where the frontend makes a query request and the ApolloService fetches the request and then performs a request with RESTDataSource to a third-party service, I receive a response with a header.
Currently, ApolloServer only parses the body through the resolver and sends it back to the client
I wanted to pass also the header received to the client
I don't know how to do that at the RESTDataSource level since I don't have access to the Apollo response
I hope this was clear enough to explain the problem
export abstract class myClass extends RESTDataSource {
getSomething() {
    const endpoint = this.endpointPath;
    return this.get(endpoint);
  }
async didReceiveResponse<T>(response, request): Promise<T | null> {
    // these are the response headers desired to have them sent back to the client
    console.log(response.headers);
    if (response.ok) {
      return this.parseBody(response) as any as Promise<T>;
    } else {
      throw await this.errorFromResponse(response);
    }
  }
}
In the appolloService initialization i have
const apolloServer = new ApolloServer({
   context: async ({ res, req }) => {
    // these headers are not the same as received from the getSomething() response above
    console.log(res.getHeaders)
   }
)}