Hey Everyone, we heavily rely on GraphQL at our wo...
# apollo-kotlin
j
Hey Everyone, we heavily rely on GraphQL at our work place to support queries on our different mobile apps. One of the issues we’ve been facing is high data consumption as a result of the queries we are performing, i’m looking into graphQL compression with gzip, is this supported on the android client side, and how can i implement it?
m
Hi @Jabez Magomere congrats on the first message here 🎉 !!!
👍 2
This should be supported transparently by OkHttp which apollo-android is using behind the scenes
Maybe you'll need to add a
Accept
Accept-Encoding
HTTP header with a custom OkHttpInterceptor
j
@mbonnin Thank you for the explanation, let me try it out.