├── .buildscript ├── deploy_snapshot.sh └── integration_tests_composite.sh ├── .gitignore ├── .idea └── codeStyleSettings.xml ├── .travis.yml ├── Contributing.md ├── LICENSE ├── README.md ├── Releasing.md ├── apollo-android-support ├── .gitignore ├── build.gradle ├── gradle.properties └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── apollographql │ │ └── apollo │ │ ├── ApolloCallbackTest.java │ │ ├── ApolloPrefetchCallbackTest.java │ │ ├── TestUtils.java │ │ └── cache │ │ └── normalized │ │ └── sql │ │ └── SqlNormalizedCacheTest.java │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── apollographql │ └── apollo │ ├── ApolloCallback.java │ ├── ApolloPrefetchCallback.java │ └── cache │ └── normalized │ └── sql │ ├── ApolloSqlHelper.java │ ├── SqlNormalizedCache.java │ └── SqlNormalizedCacheFactory.java ├── apollo-api ├── build.gradle ├── gradle.properties └── src │ ├── main │ └── java │ │ └── com │ │ └── apollographql │ │ └── apollo │ │ └── api │ │ ├── Error.java │ │ ├── FragmentResponseFieldMapper.java │ │ ├── GraphqlFragment.java │ │ ├── Mutation.java │ │ ├── Operation.java │ │ ├── OperationName.java │ │ ├── Query.java │ │ ├── Response.java │ │ ├── ResponseField.java │ │ ├── ResponseFieldMapper.java │ │ ├── ResponseFieldMarshaller.java │ │ ├── ResponseReader.java │ │ ├── ResponseWriter.java │ │ ├── ScalarType.java │ │ └── internal │ │ ├── Absent.java │ │ ├── Function.java │ │ ├── Functions.java │ │ ├── Optional.java │ │ ├── Present.java │ │ ├── UnmodifiableMapBuilder.java │ │ └── Utils.java │ └── test │ └── java │ └── com │ └── apollographql │ └── apollo │ └── api │ └── graphql │ ├── CacheKeyForFieldTest.java │ └── internal │ └── OptionalTest.java ├── apollo-compiler ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── update-test-IR-files.gradle └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── apollographql │ │ └── apollo │ │ └── compiler │ │ ├── Annotations.kt │ │ ├── BuilderTypeSpecBuilder.kt │ │ ├── ClassNames.kt │ │ ├── CustomEnumTypeSpecBuilder.kt │ │ ├── FragmentsResponseMapperBuilder.kt │ │ ├── GraphQLCompiler.kt │ │ ├── Inflector.kt │ │ ├── InputObjectTypeSpecBuilder.kt │ │ ├── JavaTypeResolver.kt │ │ ├── NullableValueType.kt │ │ ├── OperationTypeSpecBuilder.kt │ │ ├── ResponseFieldSpec.kt │ │ ├── SchemaTypeSpecBuilder.kt │ │ ├── Util.kt │ │ ├── VariablesTypeSpecBuilder.kt │ │ └── ir │ │ ├── CodeGenerationContext.kt │ │ ├── CodeGenerationIR.kt │ │ ├── CodeGenerator.kt │ │ ├── Field.kt │ │ ├── Fragment.kt │ │ ├── InlineFragment.kt │ │ ├── Operation.kt │ │ ├── TypeDeclaration.kt │ │ ├── TypeDeclarationField.kt │ │ ├── TypeDeclarationValue.kt │ │ └── Variable.kt │ └── test │ ├── graphql │ ├── apollo-codegen.properties │ ├── com │ │ └── example │ │ │ ├── arguments_complex │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── type │ │ │ │ └── Episode.java │ │ │ ├── arguments_simple │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── type │ │ │ │ └── Episode.java │ │ │ ├── custom_scalar_type │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── type │ │ │ │ └── CustomType.java │ │ │ ├── deprecation │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── type │ │ │ │ └── Episode.java │ │ │ ├── directives │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── enum_type │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ ├── schema.json │ │ │ └── type │ │ │ │ └── Episode.java │ │ │ ├── fragment_friends_connection │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── fragment │ │ │ │ └── HeroDetails.java │ │ │ ├── fragment_in_fragment │ │ │ ├── AllStarships.java │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── fragment │ │ │ │ ├── PilotFragment.java │ │ │ │ └── StarshipFragment.java │ │ │ └── schema.json │ │ │ ├── fragment_with_inline_fragment │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ ├── fragment │ │ │ │ └── HeroDetails.java │ │ │ └── type │ │ │ │ └── Episode.java │ │ │ ├── fragments_with_type_condition │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── fragment │ │ │ │ ├── DroidDetails.java │ │ │ │ └── HumanDetails.java │ │ │ ├── hero_details │ │ │ ├── HeroDetails.java │ │ │ ├── TestOperation.graphql │ │ │ └── TestOperation.json │ │ │ ├── hero_details_guava │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── hero_details_java_optional │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── hero_details_nullable │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── hero_details_semantic_naming │ │ │ ├── HeroDetailsQuery.java │ │ │ ├── TestOperation.graphql │ │ │ └── TestOperation.json │ │ │ ├── hero_name │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── inline_fragments_with_friends │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── type │ │ │ │ └── Episode.java │ │ │ ├── input_object_type │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── type │ │ │ │ ├── ColorInput.java │ │ │ │ ├── Episode.java │ │ │ │ └── ReviewInput.java │ │ │ ├── mutation_create_review │ │ │ ├── CreateReviewForEpisode.java │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── type │ │ │ │ ├── ColorInput.java │ │ │ │ ├── Episode.java │ │ │ │ └── ReviewInput.java │ │ │ ├── mutation_create_review_semantic_naming │ │ │ ├── CreateReviewForEpisodeMutation.java │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── type │ │ │ │ ├── ColorInput.java │ │ │ │ ├── Episode.java │ │ │ │ └── ReviewInput.java │ │ │ ├── nested_conditional_inline │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── type │ │ │ │ └── Episode.java │ │ │ ├── no_accessors │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ ├── fragment │ │ │ │ └── HeroDetails.java │ │ │ └── type │ │ │ │ └── Episode.java │ │ │ ├── reserved_words │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── scalar_types │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── simple_fragment │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── TestQuery.java │ │ │ └── fragment │ │ │ │ └── HeroDetails.java │ │ │ ├── simple_inline_fragment │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── two_heroes_unique │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ ├── two_heroes_with_friends │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ └── TestQuery.java │ │ │ └── unique_type_name │ │ │ ├── HeroDetailQuery.java │ │ │ ├── TestOperation.graphql │ │ │ ├── TestOperation.json │ │ │ ├── fragment │ │ │ └── HeroDetails.java │ │ │ └── type │ │ │ └── Episode.java │ └── schema.json │ └── kotlin │ └── com │ └── apollographql │ └── apollo │ └── compiler │ ├── CodegenTest.kt │ └── JavaTypeResolverTest.kt ├── apollo-espresso-support ├── .gitignore ├── build.gradle ├── gradle.properties └── src │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── apollographql │ │ └── apollo │ │ └── test │ │ └── espresso │ │ └── ApolloIdlingResource.java │ └── test │ └── java │ └── com │ └── apollographql │ └── apollo │ └── test │ └── espresso │ └── ApolloIdlingResourceTest.java ├── apollo-gradle-plugin ├── build.gradle ├── gradle.properties └── src │ ├── main │ ├── groovy │ │ └── com │ │ │ └── apollographql │ │ │ └── apollo │ │ │ └── gradle │ │ │ └── ApolloPlugin.groovy │ ├── java │ │ └── com │ │ │ └── apollographql │ │ │ └── apollo │ │ │ └── gradle │ │ │ ├── ApolloClassGenTask.java │ │ │ ├── ApolloCodeGenInstallTask.java │ │ │ ├── ApolloCodegenArgs.java │ │ │ ├── ApolloExtension.java │ │ │ ├── ApolloIRGenTask.java │ │ │ ├── ApolloSchemaIntrospectionTask.java │ │ │ ├── GraphQLSourceDirectorySet.java │ │ │ └── Utils.java │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ └── com.apollographql.android.properties │ └── test │ ├── groovy │ └── com │ │ └── apollographql │ │ └── apollo │ │ └── gradle │ │ ├── ApolloPluginTestHelper.groovy │ │ ├── integration │ │ ├── BasicAndroidSpec.groovy │ │ ├── FlavoredMultiSchemaSpec.groovy │ │ └── LibraryProjectAndroidSpec.groovy │ │ └── unit │ │ ├── ApolloAndroidPluginSpec.groovy │ │ ├── ApolloCodeGenInstallTaskSpec.groovy │ │ ├── ApolloIRGenTaskSpec.groovy │ │ └── ApolloJavaPluginSpec.groovy │ └── testProject │ ├── .gitignore │ └── android │ ├── basic │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── graphql │ │ └── com │ │ │ └── example │ │ │ ├── AllFilms.graphql │ │ │ ├── DroidDetails.graphql │ │ │ └── DroidDetailsSpeciesInfo.graphql │ │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── buildScriptFixtures │ ├── basic.gradle │ ├── flavored.gradle │ └── libraryProject.gradle │ ├── flavoredWithMultipleSchemas │ └── src │ │ ├── demoDebug │ │ └── graphql │ │ │ └── com │ │ │ ├── githunt │ │ │ └── api │ │ │ │ ├── feed │ │ │ │ └── FeedQuery.graphql │ │ │ │ └── profile │ │ │ │ └── Profile.graphql │ │ │ └── starwars │ │ │ └── api │ │ │ └── hero │ │ │ └── HeroName.graphql │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── graphql │ │ │ └── com │ │ │ │ ├── frontpage │ │ │ │ └── api │ │ │ │ │ └── posts │ │ │ │ │ └── PostDetails.graphql │ │ │ │ └── starwars │ │ │ │ └── api │ │ │ │ ├── hero │ │ │ │ └── HeroAndFriends.graphql │ │ │ │ └── review │ │ │ │ └── ReviewForEpisode.graphql │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ └── graphql │ │ └── com │ │ └── starwars │ │ └── api │ │ └── starship │ │ └── Starship.graphql │ └── schemaFilesFixtures │ ├── frontpage.json │ ├── githunt.json │ ├── invalidSchema.json │ ├── oldswapi.json │ └── starwars.json ├── apollo-integration ├── .gitignore ├── build.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ ├── graphql │ │ └── com │ │ │ └── apollographql │ │ │ └── apollo │ │ │ └── integration │ │ │ ├── httpcache │ │ │ ├── AllFilms.graphql │ │ │ ├── AllPlanets.graphql │ │ │ ├── DroidDetails.graphql │ │ │ └── schema.json │ │ │ └── normalizer │ │ │ ├── CharacterDetails.graphql │ │ │ ├── CharacterNameById.graphql │ │ │ ├── CreateReviewMutation.graphql │ │ │ ├── EpisodeHeroName.graphql │ │ │ ├── EpisodeHeroWithDates.graphql │ │ │ ├── EpisodeHeroWithInlineFragment.graphql │ │ │ ├── HeroAndFriendsName.graphql │ │ │ ├── HeroAndFriendsNameWithIds.graphql │ │ │ ├── HeroAndFriendsNameWithIdsForParentOnly.graphql │ │ │ ├── HeroAndFriendsWithFragments.graphql │ │ │ ├── HeroAppearsIn.graphql │ │ │ ├── HeroName.graphql │ │ │ ├── HeroNameWithEnums.graphql │ │ │ ├── HeroParentTypeDependentField.graphql │ │ │ ├── HeroTypeDependentAliasedField.graphql │ │ │ ├── HeroWithFriendsFragment.graphql │ │ │ ├── HumanWithIdFragment.graphql │ │ │ ├── ReviewsByEpisode.graphql │ │ │ ├── SameHeroTwice.graphql │ │ │ └── schema.json │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ ├── java │ └── com │ │ └── apollographql │ │ └── apollo │ │ ├── ApolloCallTest.java │ │ ├── ApolloInterceptorChainTest.java │ │ ├── ApolloInterceptorTest.java │ │ ├── ApolloPrefetchTest.java │ │ ├── ApolloWatcherTest.java │ │ ├── AsyncNormalizedCacheTestCase.java │ │ ├── CacheHeadersTest.java │ │ ├── FaultyHttpCacheStore.java │ │ ├── HttpCacheTest.java │ │ ├── IdFieldCacheKeyResolver.java │ │ ├── IntegrationTest.java │ │ ├── MockHttpCacheStore.java │ │ ├── NamedCountDownLatch.java │ │ ├── NoFileSystem.java │ │ ├── NormalizedCacheTestCase.java │ │ ├── ResponseNormalizationTest.java │ │ ├── ResponseWriteTestCase.java │ │ ├── Rx2ApolloTest.java │ │ ├── RxApolloTest.java │ │ ├── SendOperationIdentifiersTest.java │ │ ├── Utils.java │ │ └── internal │ │ ├── QueryRefetchTest.java │ │ ├── cache │ │ └── normalized │ │ │ └── ApolloStoreTest.java │ │ └── fetcher │ │ ├── BaseFetcherTest.java │ │ ├── CacheAndNetworkFetcherTest.java │ │ ├── CacheFirstFetcherTest.java │ │ ├── CacheOnlyFetcherTest.java │ │ ├── NetworkFirstFetcherTest.java │ │ └── NetworkOnlyFetcherTest.java │ └── resources │ ├── AllPlanetsNullableField.json │ ├── CreateReviewResponse.json │ ├── EpisodeHeroNameResponse.json │ ├── EpisodeHeroNameResponseNameChange.json │ ├── EpisodeHeroNameResponseNameChangeTwo.json │ ├── EpisodeHeroNameResponseWithId.json │ ├── EpisodeHeroWithDatesResponse.json │ ├── EpisodeHeroWithInlineFragmentResponse.json │ ├── HeroAndFriendsNameResponse.json │ ├── HeroAndFriendsNameWithIdsNameChange.json │ ├── HeroAndFriendsNameWithIdsParentOnlyResponse.json │ ├── HeroAndFriendsNameWithIdsResponse.json │ ├── HeroAndFriendsWithFragmentResponse.json │ ├── HeroAppearsInResponse.json │ ├── HeroNameResponse.json │ ├── HeroNameWithEnumsResponse.json │ ├── HeroParentTypeDependentFieldDroidResponse.json │ ├── HeroParentTypeDependentFieldHumanResponse.json │ ├── HeroTypeDependentAliasedFieldResponse.json │ ├── HeroTypeDependentAliasedFieldResponseHuman.json │ ├── HeroTypeDependentFieldResponseDroid.json │ ├── HttpCacheTestAllFilms.json │ ├── HttpCacheTestAllPlanets.json │ ├── HttpCacheTestAllPlanets2.json │ ├── HttpCacheTestDroidDetails.json │ ├── ResponseDataEmpty.json │ ├── ResponseDataMissing.json │ ├── ResponseDataNull.json │ ├── ResponseError.json │ ├── ResponseErrorWithCustomAttributes.json │ ├── ResponseErrorWithData.json │ ├── ResponseErrorWithNullsAndCustomAttributes.json │ ├── ReviewsEmpireEpisodeResponse.json │ ├── ReviewsEmpireEpisodeResponseUpdated.json │ ├── ReviewsJediEpisodeResponse.json │ └── SameHeroTwiceResponse.json ├── apollo-runtime ├── build.gradle ├── gradle.properties └── src │ ├── main │ └── java │ │ └── com │ │ └── apollographql │ │ └── apollo │ │ ├── ApolloCall.java │ │ ├── ApolloClient.java │ │ ├── ApolloMutationCall.java │ │ ├── ApolloPrefetch.java │ │ ├── ApolloQueryCall.java │ │ ├── ApolloQueryWatcher.java │ │ ├── CustomTypeAdapter.java │ │ ├── IdleResourceCallback.java │ │ ├── Logger.java │ │ ├── cache │ │ ├── ApolloCacheHeaders.java │ │ ├── CacheHeaders.java │ │ ├── http │ │ │ ├── DiskLruHttpCacheStore.java │ │ │ ├── HttpCachePolicy.java │ │ │ ├── HttpCacheRecord.java │ │ │ ├── HttpCacheRecordEditor.java │ │ │ └── HttpCacheStore.java │ │ └── normalized │ │ │ ├── ApolloStore.java │ │ │ ├── CacheKey.java │ │ │ ├── CacheKeyResolver.java │ │ │ ├── CacheReference.java │ │ │ ├── NormalizedCache.java │ │ │ ├── NormalizedCacheFactory.java │ │ │ ├── Record.java │ │ │ ├── RecordFieldAdapter.java │ │ │ ├── RecordSet.java │ │ │ └── lru │ │ │ ├── EvictionPolicy.java │ │ │ ├── LruNormalizedCache.java │ │ │ └── LruNormalizedCacheFactory.java │ │ ├── exception │ │ ├── ApolloCanceledException.java │ │ ├── ApolloException.java │ │ ├── ApolloHttpException.java │ │ ├── ApolloNetworkException.java │ │ └── ApolloParseException.java │ │ ├── fetcher │ │ ├── ApolloResponseFetchers.java │ │ └── ResponseFetcher.java │ │ ├── interceptor │ │ ├── ApolloInterceptor.java │ │ ├── ApolloInterceptorChain.java │ │ └── FetchOptions.java │ │ ├── internal │ │ ├── ApolloCallTracker.java │ │ ├── QueryReFetcher.java │ │ ├── RealApolloCall.java │ │ ├── RealApolloPrefetch.java │ │ ├── RealApolloQueryWatcher.java │ │ ├── ResponseFieldMapperFactory.java │ │ ├── cache │ │ │ ├── http │ │ │ │ ├── CacheResponseBody.java │ │ │ │ ├── HttpCache.java │ │ │ │ ├── HttpCacheFetchStrategy.java │ │ │ │ ├── HttpCacheInterceptor.java │ │ │ │ ├── ResponseBodyCacheSink.java │ │ │ │ ├── ResponseBodyProxy.java │ │ │ │ ├── ResponseHeaderRecord.java │ │ │ │ └── Utils.java │ │ │ └── normalized │ │ │ │ ├── CacheResponseWriter.java │ │ │ │ ├── NoOpApolloStore.java │ │ │ │ ├── ReadableStore.java │ │ │ │ ├── RealApolloStore.java │ │ │ │ ├── RecordWeigher.java │ │ │ │ ├── ResponseNormalizer.java │ │ │ │ ├── Transaction.java │ │ │ │ └── WriteableStore.java │ │ ├── fetcher │ │ │ ├── CacheAndNetworkFetcher.java │ │ │ ├── CacheFirstFetcher.java │ │ │ ├── CacheOnlyFetcher.java │ │ │ ├── NetworkFirstFetcher.java │ │ │ └── NetworkOnlyFetcher.java │ │ ├── field │ │ │ ├── CacheFieldValueResolver.java │ │ │ ├── FieldValueResolver.java │ │ │ └── MapFieldValueResolver.java │ │ ├── interceptor │ │ │ ├── ApolloCacheInterceptor.java │ │ │ ├── ApolloParseInterceptor.java │ │ │ ├── ApolloServerInterceptor.java │ │ │ ├── HttpResponseBodyParser.java │ │ │ └── RealApolloInterceptorChain.java │ │ ├── json │ │ │ ├── ApolloJsonReader.java │ │ │ ├── BufferedSourceJsonReader.java │ │ │ ├── CacheJsonStreamReader.java │ │ │ ├── JsonReader.java │ │ │ ├── JsonScope.java │ │ │ └── ResponseJsonStreamReader.java │ │ ├── reader │ │ │ ├── RealResponseReader.java │ │ │ └── ResponseReaderShadow.java │ │ └── util │ │ │ ├── ApolloLogger.java │ │ │ ├── Cancelable.java │ │ │ └── SimpleStack.java │ │ └── json │ │ ├── JsonDataException.java │ │ └── JsonEncodingException.java │ └── test │ └── java │ └── com │ └── apollographql │ └── apollo │ ├── ApolloExceptionTest.java │ ├── cache │ └── normalized │ │ ├── RecordFieldAdapterTest.java │ │ ├── RecordWeigherTest.java │ │ ├── TestCustomScalar.java │ │ └── lru │ │ └── LruNormalizedCacheTest.java │ └── internal │ ├── ResponseFetcherTest.java │ └── reader │ ├── ApolloCallTrackerTest.java │ └── ResponseReaderTest.java ├── apollo-rx2support ├── .gitignore ├── build.gradle ├── gradle.properties └── src │ └── main │ └── java │ └── com │ └── apollographql │ └── apollo │ └── rx2 │ └── Rx2Apollo.java ├── apollo-rxsupport ├── .gitignore ├── build.gradle ├── gradle.properties └── src │ └── main │ └── java │ └── com │ └── apollographql │ └── apollo │ └── rx │ └── RxApollo.java ├── apollo-sample ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── graphql │ └── com │ │ └── apollographql │ │ └── apollo │ │ └── sample │ │ ├── GihuntRepositoryDetailQuery.graphql │ │ ├── GithuntFeedQuery.graphql │ │ └── schema.json │ ├── java │ └── com │ │ └── apollographql │ │ └── apollo │ │ └── sample │ │ ├── GitHuntApplication.java │ │ ├── detail │ │ └── GitHuntEntryDetailActivity.java │ │ └── feed │ │ ├── GitHuntFeedActivity.java │ │ ├── GitHuntFeedRecyclerViewAdapter.java │ │ └── GitHuntNavigator.java │ └── res │ ├── layout │ ├── activity_githunt_feed.xml │ ├── activity_repository_detail.xml │ └── item_githunt_entry.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ ├── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── network_security_config.xml ├── checkstyle.xml ├── gradle.properties ├── gradle ├── composite │ ├── apollo-integration-build.gradle │ ├── apollo-integration-settings.gradle │ └── root-settings.gradle ├── dependencies.gradle ├── gradle-mvn-push.gradle ├── testFixturesDeps.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.buildscript/deploy_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/.buildscript/deploy_snapshot.sh -------------------------------------------------------------------------------- /.buildscript/integration_tests_composite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/.buildscript/integration_tests_composite.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/.travis.yml -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/README.md -------------------------------------------------------------------------------- /Releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/Releasing.md -------------------------------------------------------------------------------- /apollo-android-support/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apollo-android-support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/build.gradle -------------------------------------------------------------------------------- /apollo-android-support/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/gradle.properties -------------------------------------------------------------------------------- /apollo-android-support/src/androidTest/java/com/apollographql/apollo/ApolloCallbackTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/androidTest/java/com/apollographql/apollo/ApolloCallbackTest.java -------------------------------------------------------------------------------- /apollo-android-support/src/androidTest/java/com/apollographql/apollo/ApolloPrefetchCallbackTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/androidTest/java/com/apollographql/apollo/ApolloPrefetchCallbackTest.java -------------------------------------------------------------------------------- /apollo-android-support/src/androidTest/java/com/apollographql/apollo/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/androidTest/java/com/apollographql/apollo/TestUtils.java -------------------------------------------------------------------------------- /apollo-android-support/src/androidTest/java/com/apollographql/apollo/cache/normalized/sql/SqlNormalizedCacheTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/androidTest/java/com/apollographql/apollo/cache/normalized/sql/SqlNormalizedCacheTest.java -------------------------------------------------------------------------------- /apollo-android-support/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apollo-android-support/src/main/java/com/apollographql/apollo/ApolloCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/main/java/com/apollographql/apollo/ApolloCallback.java -------------------------------------------------------------------------------- /apollo-android-support/src/main/java/com/apollographql/apollo/ApolloPrefetchCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/main/java/com/apollographql/apollo/ApolloPrefetchCallback.java -------------------------------------------------------------------------------- /apollo-android-support/src/main/java/com/apollographql/apollo/cache/normalized/sql/ApolloSqlHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/main/java/com/apollographql/apollo/cache/normalized/sql/ApolloSqlHelper.java -------------------------------------------------------------------------------- /apollo-android-support/src/main/java/com/apollographql/apollo/cache/normalized/sql/SqlNormalizedCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/main/java/com/apollographql/apollo/cache/normalized/sql/SqlNormalizedCache.java -------------------------------------------------------------------------------- /apollo-android-support/src/main/java/com/apollographql/apollo/cache/normalized/sql/SqlNormalizedCacheFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-android-support/src/main/java/com/apollographql/apollo/cache/normalized/sql/SqlNormalizedCacheFactory.java -------------------------------------------------------------------------------- /apollo-api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/build.gradle -------------------------------------------------------------------------------- /apollo-api/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/gradle.properties -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/Error.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/Error.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/FragmentResponseFieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/FragmentResponseFieldMapper.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/GraphqlFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/GraphqlFragment.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/Mutation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/Mutation.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/Operation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/Operation.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/OperationName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/OperationName.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/Query.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/Query.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/Response.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/ResponseField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/ResponseField.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/ResponseFieldMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/ResponseFieldMapper.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/ResponseFieldMarshaller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/ResponseFieldMarshaller.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/ResponseReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/ResponseReader.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/ResponseWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/ResponseWriter.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/ScalarType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/ScalarType.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/internal/Absent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/internal/Absent.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/internal/Function.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/internal/Function.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/internal/Functions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/internal/Functions.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/internal/Optional.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/internal/Optional.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/internal/Present.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/internal/Present.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/internal/UnmodifiableMapBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/internal/UnmodifiableMapBuilder.java -------------------------------------------------------------------------------- /apollo-api/src/main/java/com/apollographql/apollo/api/internal/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/main/java/com/apollographql/apollo/api/internal/Utils.java -------------------------------------------------------------------------------- /apollo-api/src/test/java/com/apollographql/apollo/api/graphql/CacheKeyForFieldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/test/java/com/apollographql/apollo/api/graphql/CacheKeyForFieldTest.java -------------------------------------------------------------------------------- /apollo-api/src/test/java/com/apollographql/apollo/api/graphql/internal/OptionalTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-api/src/test/java/com/apollographql/apollo/api/graphql/internal/OptionalTest.java -------------------------------------------------------------------------------- /apollo-compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apollo-compiler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/build.gradle -------------------------------------------------------------------------------- /apollo-compiler/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/gradle.properties -------------------------------------------------------------------------------- /apollo-compiler/gradle/update-test-IR-files.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/gradle/update-test-IR-files.gradle -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/Annotations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/Annotations.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/BuilderTypeSpecBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/BuilderTypeSpecBuilder.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ClassNames.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ClassNames.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/CustomEnumTypeSpecBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/CustomEnumTypeSpecBuilder.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/FragmentsResponseMapperBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/FragmentsResponseMapperBuilder.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/GraphQLCompiler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/GraphQLCompiler.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/Inflector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/Inflector.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/InputObjectTypeSpecBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/InputObjectTypeSpecBuilder.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/JavaTypeResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/JavaTypeResolver.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/NullableValueType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/NullableValueType.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/OperationTypeSpecBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/OperationTypeSpecBuilder.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ResponseFieldSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ResponseFieldSpec.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/SchemaTypeSpecBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/SchemaTypeSpecBuilder.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/Util.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/VariablesTypeSpecBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/VariablesTypeSpecBuilder.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/CodeGenerationContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/CodeGenerationContext.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/CodeGenerationIR.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/CodeGenerationIR.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/CodeGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/CodeGenerator.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/Field.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/Field.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/Fragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/Fragment.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/InlineFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/InlineFragment.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/Operation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/Operation.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/TypeDeclaration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/TypeDeclaration.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/TypeDeclarationField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/TypeDeclarationField.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/TypeDeclarationValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/TypeDeclarationValue.kt -------------------------------------------------------------------------------- /apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/Variable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ir/Variable.kt -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/apollo-codegen.properties: -------------------------------------------------------------------------------- 1 | apollo-codegen version=0.15.2 -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/arguments_complex/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/arguments_complex/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/arguments_complex/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/arguments_complex/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/arguments_complex/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/arguments_complex/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/arguments_complex/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/arguments_complex/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/arguments_simple/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/arguments_simple/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/arguments_simple/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/arguments_simple/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/arguments_simple/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/arguments_simple/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/arguments_simple/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/arguments_simple/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/custom_scalar_type/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/custom_scalar_type/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/custom_scalar_type/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/custom_scalar_type/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/custom_scalar_type/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/custom_scalar_type/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/custom_scalar_type/type/CustomType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/custom_scalar_type/type/CustomType.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/deprecation/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/deprecation/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/deprecation/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/deprecation/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/deprecation/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/deprecation/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/deprecation/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/deprecation/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/directives/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/directives/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/directives/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/directives/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/directives/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/directives/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/enum_type/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/enum_type/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/enum_type/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/enum_type/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/enum_type/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/enum_type/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/enum_type/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/enum_type/schema.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/enum_type/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/enum_type/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_friends_connection/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_friends_connection/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_friends_connection/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_friends_connection/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_friends_connection/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_friends_connection/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_friends_connection/fragment/HeroDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_friends_connection/fragment/HeroDetails.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/AllStarships.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/AllStarships.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/fragment/PilotFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/fragment/PilotFragment.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/fragment/StarshipFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/fragment/StarshipFragment.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_in_fragment/schema.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/fragment/HeroDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/fragment/HeroDetails.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragment_with_inline_fragment/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/fragment/DroidDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/fragment/DroidDetails.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/fragment/HumanDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/fragments_with_type_condition/fragment/HumanDetails.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details/HeroDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details/HeroDetails.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_guava/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_guava/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_guava/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_guava/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_guava/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_guava/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_java_optional/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_java_optional/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_java_optional/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_java_optional/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_java_optional/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_java_optional/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_nullable/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_nullable/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_nullable/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_nullable/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_nullable/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_nullable/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_semantic_naming/HeroDetailsQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_semantic_naming/HeroDetailsQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_semantic_naming/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_semantic_naming/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_details_semantic_naming/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_details_semantic_naming/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_name/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_name/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_name/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_name/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/hero_name/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/hero_name/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/inline_fragments_with_friends/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/inline_fragments_with_friends/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/inline_fragments_with_friends/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/inline_fragments_with_friends/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/inline_fragments_with_friends/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/inline_fragments_with_friends/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/inline_fragments_with_friends/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/inline_fragments_with_friends/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/input_object_type/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/input_object_type/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/input_object_type/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/input_object_type/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/input_object_type/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/input_object_type/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/input_object_type/type/ColorInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/input_object_type/type/ColorInput.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/input_object_type/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/input_object_type/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/input_object_type/type/ReviewInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/input_object_type/type/ReviewInput.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review/CreateReviewForEpisode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review/CreateReviewForEpisode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review/type/ColorInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review/type/ColorInput.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review/type/ReviewInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review/type/ReviewInput.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/CreateReviewForEpisodeMutation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/CreateReviewForEpisodeMutation.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/type/ColorInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/type/ColorInput.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/type/ReviewInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/mutation_create_review_semantic_naming/type/ReviewInput.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/nested_conditional_inline/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/nested_conditional_inline/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/nested_conditional_inline/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/nested_conditional_inline/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/nested_conditional_inline/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/nested_conditional_inline/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/no_accessors/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/no_accessors/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/no_accessors/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/no_accessors/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/no_accessors/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/no_accessors/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/no_accessors/fragment/HeroDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/no_accessors/fragment/HeroDetails.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/no_accessors/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/no_accessors/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/reserved_words/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/reserved_words/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/reserved_words/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/reserved_words/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/scalar_types/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/scalar_types/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/scalar_types/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/scalar_types/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/simple_fragment/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/simple_fragment/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/simple_fragment/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/simple_fragment/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/simple_fragment/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/simple_fragment/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/simple_fragment/fragment/HeroDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/simple_fragment/fragment/HeroDetails.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/simple_inline_fragment/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/simple_inline_fragment/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/simple_inline_fragment/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/simple_inline_fragment/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/simple_inline_fragment/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/simple_inline_fragment/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/two_heroes_unique/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/two_heroes_unique/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/two_heroes_unique/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/two_heroes_unique/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/two_heroes_unique/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/two_heroes_unique/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/two_heroes_with_friends/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/two_heroes_with_friends/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/two_heroes_with_friends/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/two_heroes_with_friends/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/two_heroes_with_friends/TestQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/two_heroes_with_friends/TestQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/unique_type_name/HeroDetailQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/unique_type_name/HeroDetailQuery.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/unique_type_name/TestOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/unique_type_name/TestOperation.graphql -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/unique_type_name/TestOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/unique_type_name/TestOperation.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/unique_type_name/fragment/HeroDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/unique_type_name/fragment/HeroDetails.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/com/example/unique_type_name/type/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/com/example/unique_type_name/type/Episode.java -------------------------------------------------------------------------------- /apollo-compiler/src/test/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/graphql/schema.json -------------------------------------------------------------------------------- /apollo-compiler/src/test/kotlin/com/apollographql/apollo/compiler/CodegenTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/kotlin/com/apollographql/apollo/compiler/CodegenTest.kt -------------------------------------------------------------------------------- /apollo-compiler/src/test/kotlin/com/apollographql/apollo/compiler/JavaTypeResolverTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-compiler/src/test/kotlin/com/apollographql/apollo/compiler/JavaTypeResolverTest.kt -------------------------------------------------------------------------------- /apollo-espresso-support/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apollo-espresso-support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-espresso-support/build.gradle -------------------------------------------------------------------------------- /apollo-espresso-support/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-espresso-support/gradle.properties -------------------------------------------------------------------------------- /apollo-espresso-support/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-espresso-support/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apollo-espresso-support/src/main/java/com/apollographql/apollo/test/espresso/ApolloIdlingResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-espresso-support/src/main/java/com/apollographql/apollo/test/espresso/ApolloIdlingResource.java -------------------------------------------------------------------------------- /apollo-espresso-support/src/test/java/com/apollographql/apollo/test/espresso/ApolloIdlingResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-espresso-support/src/test/java/com/apollographql/apollo/test/espresso/ApolloIdlingResourceTest.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/build.gradle -------------------------------------------------------------------------------- /apollo-gradle-plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/gradle.properties -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/groovy/com/apollographql/apollo/gradle/ApolloPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/groovy/com/apollographql/apollo/gradle/ApolloPlugin.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloClassGenTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloClassGenTask.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloCodeGenInstallTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloCodeGenInstallTask.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloCodegenArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloCodegenArgs.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloExtension.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloIRGenTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloIRGenTask.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloSchemaIntrospectionTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/ApolloSchemaIntrospectionTask.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/GraphQLSourceDirectorySet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/GraphQLSourceDirectorySet.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/java/com/apollographql/apollo/gradle/Utils.java -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/main/resources/META-INF/gradle-plugins/com.apollographql.android.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/main/resources/META-INF/gradle-plugins/com.apollographql.android.properties -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/ApolloPluginTestHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/ApolloPluginTestHelper.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/integration/BasicAndroidSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/integration/BasicAndroidSpec.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/integration/FlavoredMultiSchemaSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/integration/FlavoredMultiSchemaSpec.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/integration/LibraryProjectAndroidSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/integration/LibraryProjectAndroidSpec.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/unit/ApolloAndroidPluginSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/unit/ApolloAndroidPluginSpec.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/unit/ApolloCodeGenInstallTaskSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/unit/ApolloCodeGenInstallTaskSpec.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/unit/ApolloIRGenTaskSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/unit/ApolloIRGenTaskSpec.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/unit/ApolloJavaPluginSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/groovy/com/apollographql/apollo/gradle/unit/ApolloJavaPluginSpec.groovy -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/.gitignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/graphql/com/example/AllFilms.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/graphql/com/example/AllFilms.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/graphql/com/example/DroidDetails.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/graphql/com/example/DroidDetails.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/graphql/com/example/DroidDetailsSpeciesInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/graphql/com/example/DroidDetailsSpeciesInfo.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/basic/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/buildScriptFixtures/basic.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/buildScriptFixtures/basic.gradle -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/buildScriptFixtures/flavored.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/buildScriptFixtures/flavored.gradle -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/buildScriptFixtures/libraryProject.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/buildScriptFixtures/libraryProject.gradle -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/demoDebug/graphql/com/githunt/api/feed/FeedQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/demoDebug/graphql/com/githunt/api/feed/FeedQuery.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/demoDebug/graphql/com/githunt/api/profile/Profile.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/demoDebug/graphql/com/githunt/api/profile/Profile.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/demoDebug/graphql/com/starwars/api/hero/HeroName.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/demoDebug/graphql/com/starwars/api/hero/HeroName.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/graphql/com/frontpage/api/posts/PostDetails.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/graphql/com/frontpage/api/posts/PostDetails.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/graphql/com/starwars/api/hero/HeroAndFriends.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/graphql/com/starwars/api/hero/HeroAndFriends.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/graphql/com/starwars/api/review/ReviewForEpisode.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/graphql/com/starwars/api/review/ReviewForEpisode.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/release/graphql/com/starwars/api/starship/Starship.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/flavoredWithMultipleSchemas/src/release/graphql/com/starwars/api/starship/Starship.graphql -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/frontpage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/frontpage.json -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/githunt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/githunt.json -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/invalidSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/invalidSchema.json -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/oldswapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/oldswapi.json -------------------------------------------------------------------------------- /apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/starwars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-gradle-plugin/src/test/testProject/android/schemaFilesFixtures/starwars.json -------------------------------------------------------------------------------- /apollo-integration/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apollo-integration/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/build.gradle -------------------------------------------------------------------------------- /apollo-integration/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/httpcache/AllFilms.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/httpcache/AllFilms.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/httpcache/AllPlanets.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/httpcache/AllPlanets.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/httpcache/DroidDetails.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/httpcache/DroidDetails.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/httpcache/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/httpcache/schema.json -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/CharacterDetails.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/CharacterDetails.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/CharacterNameById.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/CharacterNameById.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/CreateReviewMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/CreateReviewMutation.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/EpisodeHeroName.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/EpisodeHeroName.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/EpisodeHeroWithDates.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/EpisodeHeroWithDates.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/EpisodeHeroWithInlineFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/EpisodeHeroWithInlineFragment.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAndFriendsName.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAndFriendsName.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAndFriendsNameWithIds.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAndFriendsNameWithIds.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAndFriendsNameWithIdsForParentOnly.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAndFriendsNameWithIdsForParentOnly.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAndFriendsWithFragments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAndFriendsWithFragments.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAppearsIn.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroAppearsIn.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroName.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroName.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroNameWithEnums.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroNameWithEnums.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroParentTypeDependentField.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroParentTypeDependentField.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroTypeDependentAliasedField.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroTypeDependentAliasedField.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroWithFriendsFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HeroWithFriendsFragment.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HumanWithIdFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/HumanWithIdFragment.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/ReviewsByEpisode.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/ReviewsByEpisode.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/SameHeroTwice.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/SameHeroTwice.graphql -------------------------------------------------------------------------------- /apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/graphql/com/apollographql/apollo/integration/normalizer/schema.json -------------------------------------------------------------------------------- /apollo-integration/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/ApolloCallTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/ApolloCallTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/ApolloInterceptorChainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/ApolloInterceptorChainTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/ApolloInterceptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/ApolloInterceptorTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/ApolloPrefetchTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/ApolloPrefetchTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/ApolloWatcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/ApolloWatcherTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/AsyncNormalizedCacheTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/AsyncNormalizedCacheTestCase.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/CacheHeadersTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/CacheHeadersTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/FaultyHttpCacheStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/FaultyHttpCacheStore.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/HttpCacheTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/HttpCacheTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/IdFieldCacheKeyResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/IdFieldCacheKeyResolver.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/IntegrationTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/MockHttpCacheStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/MockHttpCacheStore.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/NamedCountDownLatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/NamedCountDownLatch.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/NoFileSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/NoFileSystem.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/NormalizedCacheTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/NormalizedCacheTestCase.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/ResponseNormalizationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/ResponseNormalizationTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/ResponseWriteTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/ResponseWriteTestCase.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/Rx2ApolloTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/Rx2ApolloTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/RxApolloTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/RxApolloTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/SendOperationIdentifiersTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/SendOperationIdentifiersTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/Utils.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/internal/QueryRefetchTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/internal/QueryRefetchTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/internal/cache/normalized/ApolloStoreTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/internal/cache/normalized/ApolloStoreTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/BaseFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/BaseFetcherTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/CacheAndNetworkFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/CacheAndNetworkFetcherTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/CacheFirstFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/CacheFirstFetcherTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/CacheOnlyFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/CacheOnlyFetcherTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/NetworkFirstFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/NetworkFirstFetcherTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/NetworkOnlyFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/java/com/apollographql/apollo/internal/fetcher/NetworkOnlyFetcherTest.java -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/AllPlanetsNullableField.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/AllPlanetsNullableField.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/CreateReviewResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/CreateReviewResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/EpisodeHeroNameResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/EpisodeHeroNameResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/EpisodeHeroNameResponseNameChange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/EpisodeHeroNameResponseNameChange.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/EpisodeHeroNameResponseNameChangeTwo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/EpisodeHeroNameResponseNameChangeTwo.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/EpisodeHeroNameResponseWithId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/EpisodeHeroNameResponseWithId.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/EpisodeHeroWithDatesResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/EpisodeHeroWithDatesResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/EpisodeHeroWithInlineFragmentResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/EpisodeHeroWithInlineFragmentResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroAndFriendsNameResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroAndFriendsNameResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroAndFriendsNameWithIdsNameChange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroAndFriendsNameWithIdsNameChange.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroAndFriendsNameWithIdsParentOnlyResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroAndFriendsNameWithIdsParentOnlyResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroAndFriendsNameWithIdsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroAndFriendsNameWithIdsResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroAndFriendsWithFragmentResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroAndFriendsWithFragmentResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroAppearsInResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroAppearsInResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroNameResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroNameResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroNameWithEnumsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroNameWithEnumsResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroParentTypeDependentFieldDroidResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroParentTypeDependentFieldDroidResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroParentTypeDependentFieldHumanResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroParentTypeDependentFieldHumanResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroTypeDependentAliasedFieldResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroTypeDependentAliasedFieldResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroTypeDependentAliasedFieldResponseHuman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroTypeDependentAliasedFieldResponseHuman.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HeroTypeDependentFieldResponseDroid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HeroTypeDependentFieldResponseDroid.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HttpCacheTestAllFilms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HttpCacheTestAllFilms.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HttpCacheTestAllPlanets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HttpCacheTestAllPlanets.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HttpCacheTestAllPlanets2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HttpCacheTestAllPlanets2.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/HttpCacheTestDroidDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/HttpCacheTestDroidDetails.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ResponseDataEmpty.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { } 3 | } 4 | -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ResponseDataMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/ResponseDataMissing.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ResponseDataNull.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": null 3 | } 4 | -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ResponseError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/ResponseError.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ResponseErrorWithCustomAttributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/ResponseErrorWithCustomAttributes.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ResponseErrorWithData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/ResponseErrorWithData.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ResponseErrorWithNullsAndCustomAttributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/ResponseErrorWithNullsAndCustomAttributes.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ReviewsEmpireEpisodeResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/ReviewsEmpireEpisodeResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ReviewsEmpireEpisodeResponseUpdated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/ReviewsEmpireEpisodeResponseUpdated.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/ReviewsJediEpisodeResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/ReviewsJediEpisodeResponse.json -------------------------------------------------------------------------------- /apollo-integration/src/test/resources/SameHeroTwiceResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-integration/src/test/resources/SameHeroTwiceResponse.json -------------------------------------------------------------------------------- /apollo-runtime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/build.gradle -------------------------------------------------------------------------------- /apollo-runtime/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/gradle.properties -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/ApolloCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/ApolloCall.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/ApolloClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/ApolloClient.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/ApolloMutationCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/ApolloMutationCall.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/ApolloPrefetch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/ApolloPrefetch.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/ApolloQueryCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/ApolloQueryCall.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/ApolloQueryWatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/ApolloQueryWatcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/CustomTypeAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/CustomTypeAdapter.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/IdleResourceCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/IdleResourceCallback.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/Logger.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/ApolloCacheHeaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/ApolloCacheHeaders.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/CacheHeaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/CacheHeaders.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/DiskLruHttpCacheStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/DiskLruHttpCacheStore.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/HttpCachePolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/HttpCachePolicy.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/HttpCacheRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/HttpCacheRecord.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/HttpCacheRecordEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/HttpCacheRecordEditor.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/HttpCacheStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/http/HttpCacheStore.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/ApolloStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/ApolloStore.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/CacheKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/CacheKey.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/CacheKeyResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/CacheKeyResolver.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/CacheReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/CacheReference.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/NormalizedCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/NormalizedCache.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/NormalizedCacheFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/NormalizedCacheFactory.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/Record.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/Record.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/RecordFieldAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/RecordFieldAdapter.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/RecordSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/RecordSet.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/lru/EvictionPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/lru/EvictionPolicy.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/lru/LruNormalizedCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/lru/LruNormalizedCache.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/lru/LruNormalizedCacheFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/cache/normalized/lru/LruNormalizedCacheFactory.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloCanceledException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloCanceledException.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloException.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloHttpException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloHttpException.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloNetworkException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloNetworkException.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/exception/ApolloParseException.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/fetcher/ApolloResponseFetchers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/fetcher/ApolloResponseFetchers.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/fetcher/ResponseFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/fetcher/ResponseFetcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/interceptor/ApolloInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/interceptor/ApolloInterceptor.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/interceptor/ApolloInterceptorChain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/interceptor/ApolloInterceptorChain.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/interceptor/FetchOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/interceptor/FetchOptions.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/ApolloCallTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/ApolloCallTracker.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/QueryReFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/QueryReFetcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/RealApolloCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/RealApolloCall.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/RealApolloPrefetch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/RealApolloPrefetch.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/RealApolloQueryWatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/RealApolloQueryWatcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/ResponseFieldMapperFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/ResponseFieldMapperFactory.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/CacheResponseBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/CacheResponseBody.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/HttpCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/HttpCache.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/HttpCacheFetchStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/HttpCacheFetchStrategy.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/HttpCacheInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/HttpCacheInterceptor.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/ResponseBodyCacheSink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/ResponseBodyCacheSink.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/ResponseBodyProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/ResponseBodyProxy.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/ResponseHeaderRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/ResponseHeaderRecord.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/http/Utils.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/CacheResponseWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/CacheResponseWriter.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/NoOpApolloStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/NoOpApolloStore.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/ReadableStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/ReadableStore.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/RealApolloStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/RealApolloStore.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/RecordWeigher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/RecordWeigher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/ResponseNormalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/ResponseNormalizer.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/Transaction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/Transaction.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/WriteableStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/cache/normalized/WriteableStore.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/CacheAndNetworkFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/CacheAndNetworkFetcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/CacheFirstFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/CacheFirstFetcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/CacheOnlyFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/CacheOnlyFetcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/NetworkFirstFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/NetworkFirstFetcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/NetworkOnlyFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/fetcher/NetworkOnlyFetcher.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/field/CacheFieldValueResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/field/CacheFieldValueResolver.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/field/FieldValueResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/field/FieldValueResolver.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/field/MapFieldValueResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/field/MapFieldValueResolver.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/ApolloCacheInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/ApolloCacheInterceptor.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/ApolloParseInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/ApolloParseInterceptor.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/ApolloServerInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/ApolloServerInterceptor.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/HttpResponseBodyParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/HttpResponseBodyParser.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/RealApolloInterceptorChain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/interceptor/RealApolloInterceptorChain.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/ApolloJsonReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/ApolloJsonReader.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/BufferedSourceJsonReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/BufferedSourceJsonReader.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/CacheJsonStreamReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/CacheJsonStreamReader.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/JsonReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/JsonReader.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/JsonScope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/JsonScope.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/ResponseJsonStreamReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/json/ResponseJsonStreamReader.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/reader/RealResponseReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/reader/RealResponseReader.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/reader/ResponseReaderShadow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/reader/ResponseReaderShadow.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/util/ApolloLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/util/ApolloLogger.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/util/Cancelable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/util/Cancelable.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/internal/util/SimpleStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/internal/util/SimpleStack.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/json/JsonDataException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/json/JsonDataException.java -------------------------------------------------------------------------------- /apollo-runtime/src/main/java/com/apollographql/apollo/json/JsonEncodingException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/main/java/com/apollographql/apollo/json/JsonEncodingException.java -------------------------------------------------------------------------------- /apollo-runtime/src/test/java/com/apollographql/apollo/ApolloExceptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/test/java/com/apollographql/apollo/ApolloExceptionTest.java -------------------------------------------------------------------------------- /apollo-runtime/src/test/java/com/apollographql/apollo/cache/normalized/RecordFieldAdapterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/test/java/com/apollographql/apollo/cache/normalized/RecordFieldAdapterTest.java -------------------------------------------------------------------------------- /apollo-runtime/src/test/java/com/apollographql/apollo/cache/normalized/RecordWeigherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/test/java/com/apollographql/apollo/cache/normalized/RecordWeigherTest.java -------------------------------------------------------------------------------- /apollo-runtime/src/test/java/com/apollographql/apollo/cache/normalized/TestCustomScalar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/test/java/com/apollographql/apollo/cache/normalized/TestCustomScalar.java -------------------------------------------------------------------------------- /apollo-runtime/src/test/java/com/apollographql/apollo/cache/normalized/lru/LruNormalizedCacheTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/test/java/com/apollographql/apollo/cache/normalized/lru/LruNormalizedCacheTest.java -------------------------------------------------------------------------------- /apollo-runtime/src/test/java/com/apollographql/apollo/internal/ResponseFetcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/test/java/com/apollographql/apollo/internal/ResponseFetcherTest.java -------------------------------------------------------------------------------- /apollo-runtime/src/test/java/com/apollographql/apollo/internal/reader/ApolloCallTrackerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/test/java/com/apollographql/apollo/internal/reader/ApolloCallTrackerTest.java -------------------------------------------------------------------------------- /apollo-runtime/src/test/java/com/apollographql/apollo/internal/reader/ResponseReaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-runtime/src/test/java/com/apollographql/apollo/internal/reader/ResponseReaderTest.java -------------------------------------------------------------------------------- /apollo-rx2support/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apollo-rx2support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-rx2support/build.gradle -------------------------------------------------------------------------------- /apollo-rx2support/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-rx2support/gradle.properties -------------------------------------------------------------------------------- /apollo-rx2support/src/main/java/com/apollographql/apollo/rx2/Rx2Apollo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-rx2support/src/main/java/com/apollographql/apollo/rx2/Rx2Apollo.java -------------------------------------------------------------------------------- /apollo-rxsupport/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apollo-rxsupport/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-rxsupport/build.gradle -------------------------------------------------------------------------------- /apollo-rxsupport/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-rxsupport/gradle.properties -------------------------------------------------------------------------------- /apollo-rxsupport/src/main/java/com/apollographql/apollo/rx/RxApollo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-rxsupport/src/main/java/com/apollographql/apollo/rx/RxApollo.java -------------------------------------------------------------------------------- /apollo-sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | package.json 3 | -------------------------------------------------------------------------------- /apollo-sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/build.gradle -------------------------------------------------------------------------------- /apollo-sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/graphql/com/apollographql/apollo/sample/GihuntRepositoryDetailQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/graphql/com/apollographql/apollo/sample/GihuntRepositoryDetailQuery.graphql -------------------------------------------------------------------------------- /apollo-sample/src/main/graphql/com/apollographql/apollo/sample/GithuntFeedQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/graphql/com/apollographql/apollo/sample/GithuntFeedQuery.graphql -------------------------------------------------------------------------------- /apollo-sample/src/main/graphql/com/apollographql/apollo/sample/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/graphql/com/apollographql/apollo/sample/schema.json -------------------------------------------------------------------------------- /apollo-sample/src/main/java/com/apollographql/apollo/sample/GitHuntApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/java/com/apollographql/apollo/sample/GitHuntApplication.java -------------------------------------------------------------------------------- /apollo-sample/src/main/java/com/apollographql/apollo/sample/detail/GitHuntEntryDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/java/com/apollographql/apollo/sample/detail/GitHuntEntryDetailActivity.java -------------------------------------------------------------------------------- /apollo-sample/src/main/java/com/apollographql/apollo/sample/feed/GitHuntFeedActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/java/com/apollographql/apollo/sample/feed/GitHuntFeedActivity.java -------------------------------------------------------------------------------- /apollo-sample/src/main/java/com/apollographql/apollo/sample/feed/GitHuntFeedRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/java/com/apollographql/apollo/sample/feed/GitHuntFeedRecyclerViewAdapter.java -------------------------------------------------------------------------------- /apollo-sample/src/main/java/com/apollographql/apollo/sample/feed/GitHuntNavigator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/java/com/apollographql/apollo/sample/feed/GitHuntNavigator.java -------------------------------------------------------------------------------- /apollo-sample/src/main/res/layout/activity_githunt_feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/layout/activity_githunt_feed.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/res/layout/activity_repository_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/layout/activity_repository_detail.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/res/layout/item_githunt_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/layout/item_githunt_entry.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apollo-sample/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /apollo-sample/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/apollo-sample/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/composite/apollo-integration-build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle/composite/apollo-integration-build.gradle -------------------------------------------------------------------------------- /gradle/composite/apollo-integration-settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle/composite/apollo-integration-settings.gradle -------------------------------------------------------------------------------- /gradle/composite/root-settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle/composite/root-settings.gradle -------------------------------------------------------------------------------- /gradle/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle/dependencies.gradle -------------------------------------------------------------------------------- /gradle/gradle-mvn-push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle/gradle-mvn-push.gradle -------------------------------------------------------------------------------- /gradle/testFixturesDeps.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle/testFixturesDeps.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/apollo-android/HEAD/settings.gradle --------------------------------------------------------------------------------