Hey peeps, I got a question. Does somebody know th...
# ktor
f
Hey peeps, I got a question. Does somebody know the confetti App? They are using Apollo graphQL an no Ktor. Anybody knows what the benefit is from one over the other? Is it because graphQL can replace Ktor and SqlDelight
m
Apollo Kotlin and Ktor do not really compare. • Apollo Kotlin is a GraphQL client • Ktor is a HTTP client and server
If you're talking frontend only, Apollo handles caching a bit differently with normalized caching which you can't really do with plain HTTP. But you can do HTTP response caching if you want
f
Ah ok. Thanks. I can see that in the confetti app Apollo is also used for caching user and token data.