Hi All ,
Please pardon my ignorance.
But I’m curious to know why access to FetchPolicy
associated with ApolloRequest
is labelled as internal?
I am in the middle of capturing Apollo cache performance data and one of data points that is to be captured is the FetchPolicy
associated with the request.
As of now I intend to capture the cache specific data by implementing the ApolloInterceptor
while I can access the ApolloRequest inside an implementation of the ApolloInterceptor, I still cannot access the fetchPolicy associated to the request(since the extension function exposing the fetchpolicy of a request is labelled as internal)
Is there anyway I could access the FetchPolicy
of an ApolloRequest
inside the ApolloInterceptor?
Thanks!