Benoit 'BoD' Lubek
Benoit 'BoD' Lubek
Actually you can also use the `@targetName` directive so the generated class for your type gets a name that doesn't clash. In an `extra.graphqls` file next to your shema, something...
Hi! You should be able to have the import only in your debug build, by doing something like this: `app/src/debug/kotlin/yourpackage/ApolloDebugServer.kt`: ```kotlin fun ApolloClient.registerApolloDebugServer() { ApolloDebugServer.registerApolloClient(this) } ``` `app/src/main/kotlin/yourpackage/ApolloDebugServer.kt`: ```kotlin fun...
Thanks a lot for reaching out! 👍 I'll update the manifest.
Thanks for reporting this! I haven't seen this one before. I am understanding you got this right after opening your project, is that correct? Do you get it consistently or...
I see. Likely related to the update process then. I'll see if I can reproduce it, thanks for the info!
Thank you for providing this, this is interesting data, and will dig into it. Just a quick reaction to > it is not uncommon for dev to call an API...
A few additional notes: - About your last comment about LRU, this is interesting. My hunch is that optimizing the LRU cache itself won't have a big impact (I could...
No sorry I was referring to the [SQLite cache](https://www.apollographql.com/docs/kotlin/caching/normalized-cache/#sqlite-cache) ([`SqlNormalizedCache`](https://github.com/apollographql/apollo-kotlin/blob/05f2a3295517fb7a64c2259c38b453a37f3c4d19/libraries/apollo-normalized-cache-sqlite/src/commonMain/kotlin/com/apollographql/apollo3/cache/normalized/sql/SqlNormalizedCache.kt#L13)). Maybe you don't need it either actually - it's only useful if you need a persistent cache in your app...
Thanks for clarifying. It's difficult to pinpoint the source of the contention. FWIW, what I observe in a similar test - albeit without Rx - looks a bit different. I'm...
V4 is now out, which includes `generateInputBuilders`. If you have a chance to enable it, please don't hesitate to give us your feedback on it.