Good day and I hope everyone reading this is well. I wanted to try to figure out if in the Android Client there is a good way to benchmark the data parsing?
I don’t see any hooks in the ApolloParseInterceptor
nor a seemingly easy way to do this. Outside of vendoring the library, using reflection to unlock the chain.interceptors in ApolloInterceptor
and replace the ApolloParseInterceptor
with something we built or adding an additional gradle task for modifying the generated query/mutation class’s parse()
methods to include something which would allow timing the parsing, I don’t see a solution to this.
Would love if anyone had any insight. Thanks!