apollo-kotlin icon indicating copy to clipboard operation
apollo-kotlin copied to clipboard

:robot:  A strongly-typed, caching GraphQL client for the JVM, Android, and Kotlin multiplatform.

Results 316 apollo-kotlin issues
Sort by recently updated
recently updated
newest added

I am using apollo store to cascade delete my records using something like this: ``` val results = apolloClient.apolloStore.remove(CacheKey.from("Parent_KEY"), cascade = true) results.execute() ``` And my `Parent_KEY` points to this...

:bug: Type: Bug
:file_cabinet: Normalized cache

I'm facing some weird behavior, which I'm not even sure if it's a bug or intended behavior. If the second, I'm curious what's the reasoning. I have two different queries,...

:question: Type: Question
:file_cabinet: Normalized cache

**Question.** apollo Multiplatform When to support NSURLSession。 I have one that needs to use MutiPath TCP

:car: Runtime
:sparkles: Type: Feature
:wave: Good First Issue

When a nullable field is marked `@nonnull` locally, it of course can still be returned as `null` by the backend. In particular this can happen in case of partial errors....

:sparkles: Type: Feature

Publish a [BOM](https://docs.gradle.org/current/userguide/platforms.html) so that users can import it and enforce the same version everywhere.

:sparkles: Type: Feature
:ice_cube: Icebox

We have **a lot** of top-level folders, requiring to scroll a bit before the `README.md` is visible. We could reorganize that so that all the `apollo-` folders are under a...

:sparkles: Type: Feature

We have a few very big (~70MB) objects in the repo: ``` 100644 blob 6c02eb80dc21f77dcaff356cbe9279a0a70285b3 77003153 apollo-sample/libs/apollo-gradle-plugin-0.0.1-SNAPSHOT-all.jar 100644 blob 6c02eb80dc21f77dcaff356cbe9279a0a70285b3 77003153 apollo-gradle-plugin/src/test/testProject/libs/apollo-gradle-plugin-0.0.1-SNAPSHOT-all.jar 100644 blob 265a9168fbd07fbc1dae2b5a55c1f7a25c198a4a 76999383 apollo-sample/libs/apollo-gradle-plugin-0.0.1-SNAPSHOT-all.jar 100644 blob c6ce3d683e6c8d9b96d9ffd5eb34b76fa7f79b1c...

:sparkles: Type: Feature

**Summary** I am trying to load a record from the Apollo cache. I know the record exists in the SQL cache. However, `LruNormalizedCache` has an incomplete record for `QUERY_ROOT` that...

:bug: Type: Bug
:file_cabinet: Normalized cache

I have a query which I've simplified for this post: ``` info { amenityCategories { text } category } ``` `amenityCategories` is a list of `PropertyAmenityCategory` `Objects`. `category` is an...

:toolbox: Compiler
:coffee: Java

To speedup the codegen step, we could use [incremental tasks](https://docs.gradle.org/current/userguide/custom_tasks.html#incremental_tasks) (not to be confused with [incremental builds](https://docs.gradle.org/current/userguide/performance.html#incremental_build) that we already support) and only recompile the parts that changed. A first...

:elephant: Gradle plugin
:sparkles: Type: Feature