├── .circleci └── config.yml ├── .editorconfig ├── .githooks └── post-checkout ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE │ └── pull-request-template-release.md ├── actions │ ├── build-and-run-unit-tests │ │ └── action.yml │ ├── configure-git │ │ └── action.yml │ ├── create-pr │ │ └── action.yml │ ├── run-cocoapods-integration-tests │ │ └── action.yml │ ├── run-tuist-generation │ │ └── action.yml │ └── subtree-split-push │ │ └── action.yml ├── renovate.json5 └── workflows │ ├── check-pr-metadata.yml │ ├── ci-tests-xcode-swift-6.yml │ ├── ci-tests.yml │ ├── create-release-pr.yml │ ├── pr-subtree-push.yml │ ├── publish-release.yml │ ├── release-check.yml │ └── update-swift-js-bundle.yml ├── .gitignore ├── .package.resolved ├── .tuist-version ├── CONTRIBUTING.md ├── Configuration ├── Apollo │ ├── Apollo-Project-Debug.xcconfig │ ├── Apollo-Project-Performance-Testing.xcconfig │ ├── Apollo-Project-Release.xcconfig │ ├── Apollo-Target-AnimalKingdomAPI.xcconfig │ ├── Apollo-Target-ApolloCodegenLibWrapper.xcconfig │ ├── Apollo-Target-ApolloWrapper.xcconfig │ ├── Apollo-Target-CodegenCLITests.xcconfig │ ├── Apollo-Target-CodegenInternalTestHelpers.xcconfig │ ├── Apollo-Target-CodegenTests.xcconfig │ ├── Apollo-Target-GitHubAPI.xcconfig │ ├── Apollo-Target-InternalTestHelpers.xcconfig │ ├── Apollo-Target-PaginationTests.xcconfig │ ├── Apollo-Target-PerformanceTests.xcconfig │ ├── Apollo-Target-ServerIntegrationTests.xcconfig │ ├── Apollo-Target-StarWarsAPI.xcconfig │ ├── Apollo-Target-SubscriptionAPI.xcconfig │ ├── Apollo-Target-Tests.xcconfig │ └── Apollo-Target-UploadAPI.xcconfig └── Shared │ ├── Project-Debug.xcconfig │ ├── Project-Release.xcconfig │ ├── Project-Version.xcconfig │ ├── Workspace-Analysis.xcconfig │ ├── Workspace-Debug.xcconfig │ ├── Workspace-Deployment-Targets.xcconfig │ ├── Workspace-Language.xcconfig │ ├── Workspace-Linking.xcconfig │ ├── Workspace-Packaging.xcconfig │ ├── Workspace-Release.xcconfig │ ├── Workspace-Search-Paths.xcconfig │ ├── Workspace-Shared.xcconfig │ ├── Workspace-Target-Codegen.xcconfig │ ├── Workspace-Target-Framework.xcconfig │ ├── Workspace-Target-Test.xcconfig │ ├── Workspace-Target-TestHelpers.xcconfig │ ├── Workspace-Test-Deployment-Targets.xcconfig │ ├── Workspace-Universal-Framework.xcconfig │ ├── Workspace-Universal-Target.xcconfig │ ├── Workspace-Universal-Test.xcconfig │ └── Workspace-Warnings.xcconfig ├── FORKED-WORKFLOW.md ├── LICENSE ├── Project.swift ├── README.md ├── RELEASE_CHECKLIST.md ├── Sources ├── AnimalKingdomAPI │ ├── AnimalKingdomAPI │ │ ├── Package.swift │ │ ├── Sources │ │ │ ├── Fragments │ │ │ │ ├── ClassroomPetDetails.graphql.swift │ │ │ │ ├── CrocodileFragment.graphql.swift │ │ │ │ ├── DogFragment.graphql.swift │ │ │ │ ├── HeightInMeters.graphql.swift │ │ │ │ ├── PetDetails.graphql.swift │ │ │ │ └── WarmBloodedDetails.graphql.swift │ │ │ ├── LocalCacheMutations │ │ │ │ ├── AllAnimalsLocalCacheMutation.graphql.swift │ │ │ │ ├── PetDetailsMutation.graphql.swift │ │ │ │ └── PetSearchLocalCacheMutation.graphql.swift │ │ │ ├── Operations │ │ │ │ ├── Mutations │ │ │ │ │ └── PetAdoptionMutation.graphql.swift │ │ │ │ └── Queries │ │ │ │ │ ├── AllAnimalsIncludeSkipQuery.graphql.swift │ │ │ │ │ ├── AllAnimalsQuery.graphql.swift │ │ │ │ │ ├── ClassroomPetsQuery.graphql.swift │ │ │ │ │ ├── DogQuery.graphql.swift │ │ │ │ │ ├── FindPetQuery.graphql.swift │ │ │ │ │ └── PetSearchQuery.graphql.swift │ │ │ └── Schema │ │ │ │ ├── CustomScalars │ │ │ │ ├── CustomDate.swift │ │ │ │ ├── ID.swift │ │ │ │ └── Object.swift │ │ │ │ ├── Enums │ │ │ │ ├── RelativeSize.graphql.swift │ │ │ │ └── SkinCovering.graphql.swift │ │ │ │ ├── InputObjects │ │ │ │ ├── MeasurementsInput.graphql.swift │ │ │ │ ├── PetAdoptionInput.graphql.swift │ │ │ │ ├── PetSearchFilters.graphql.swift │ │ │ │ └── PetSearchInput.graphql.swift │ │ │ │ ├── Interfaces │ │ │ │ ├── Animal.graphql.swift │ │ │ │ ├── HousePet.graphql.swift │ │ │ │ ├── Pet.graphql.swift │ │ │ │ └── WarmBlooded.graphql.swift │ │ │ │ ├── Objects │ │ │ │ ├── Bird.graphql.swift │ │ │ │ ├── Cat.graphql.swift │ │ │ │ ├── Crocodile.graphql.swift │ │ │ │ ├── Dog.graphql.swift │ │ │ │ ├── Fish.graphql.swift │ │ │ │ ├── Height.graphql.swift │ │ │ │ ├── Human.graphql.swift │ │ │ │ ├── Mutation.graphql.swift │ │ │ │ ├── PetRock.graphql.swift │ │ │ │ ├── Query.graphql.swift │ │ │ │ └── Rat.graphql.swift │ │ │ │ ├── SchemaConfiguration.swift │ │ │ │ ├── SchemaMetadata.graphql.swift │ │ │ │ └── Unions │ │ │ │ └── ClassroomPet.graphql.swift │ │ └── TestMocks │ │ │ ├── Bird+Mock.graphql.swift │ │ │ ├── Cat+Mock.graphql.swift │ │ │ ├── Crocodile+Mock.graphql.swift │ │ │ ├── Dog+Mock.graphql.swift │ │ │ ├── Fish+Mock.graphql.swift │ │ │ ├── Height+Mock.graphql.swift │ │ │ ├── Human+Mock.graphql.swift │ │ │ ├── MockObject+Interfaces.graphql.swift │ │ │ ├── MockObject+Unions.graphql.swift │ │ │ ├── Mutation+Mock.graphql.swift │ │ │ ├── PetRock+Mock.graphql.swift │ │ │ ├── Query+Mock.graphql.swift │ │ │ └── Rat+Mock.graphql.swift │ ├── Info.plist │ ├── Resources.swift │ └── animalkingdom-graphql │ │ ├── AllAnimalsIncludeSkipQuery.graphql │ │ ├── AllAnimalsLocalCacheMutation.graphql │ │ ├── AllAnimalsQuery.graphql │ │ ├── AnimalSchema.graphqls │ │ ├── ClassroomPets.graphql │ │ ├── CrocodileFragment.graphql │ │ ├── DogFragment.graphql │ │ ├── DogQuery.graphql │ │ ├── FindPetQuery.graphql │ │ ├── HeightInMeters.graphql │ │ ├── PetAdoptionMutation.graphql │ │ ├── PetDetails.graphql │ │ ├── PetDetailsMutation.graphql │ │ ├── PetSearchLocalCacheMutation.graphql │ │ ├── PetSearchQuery.graphql │ │ └── WarmBloodedDetails.graphql ├── GitHubAPI │ ├── GitHubAPI │ │ ├── Package.swift │ │ └── Sources │ │ │ ├── Fragments │ │ │ └── AuthorDetails.graphql.swift │ │ │ ├── Operations │ │ │ └── Queries │ │ │ │ ├── IssuesAndCommentsForRepositoryQuery.graphql.swift │ │ │ │ ├── RepoURLQuery.graphql.swift │ │ │ │ └── RepositoryQuery.graphql.swift │ │ │ └── Schema │ │ │ ├── CustomScalars │ │ │ ├── ID.swift │ │ │ └── URI.swift │ │ │ ├── Interfaces │ │ │ ├── Actor.graphql.swift │ │ │ ├── Assignable.graphql.swift │ │ │ ├── AuditEntry.graphql.swift │ │ │ ├── Closable.graphql.swift │ │ │ ├── Comment.graphql.swift │ │ │ ├── Deletable.graphql.swift │ │ │ ├── EnterpriseAuditEntryData.graphql.swift │ │ │ ├── GitObject.graphql.swift │ │ │ ├── Labelable.graphql.swift │ │ │ ├── Lockable.graphql.swift │ │ │ ├── MemberStatusable.graphql.swift │ │ │ ├── Minimizable.graphql.swift │ │ │ ├── Node.graphql.swift │ │ │ ├── OauthApplicationAuditEntryData.graphql.swift │ │ │ ├── OrganizationAuditEntryData.graphql.swift │ │ │ ├── PackageOwner.graphql.swift │ │ │ ├── ProfileOwner.graphql.swift │ │ │ ├── ProjectOwner.graphql.swift │ │ │ ├── Reactable.graphql.swift │ │ │ ├── RepositoryAuditEntryData.graphql.swift │ │ │ ├── RepositoryInfo.graphql.swift │ │ │ ├── RepositoryNode.graphql.swift │ │ │ ├── RepositoryOwner.graphql.swift │ │ │ ├── Sponsorable.graphql.swift │ │ │ ├── Starrable.graphql.swift │ │ │ ├── Subscribable.graphql.swift │ │ │ ├── TeamAuditEntryData.graphql.swift │ │ │ ├── TopicAuditEntryData.graphql.swift │ │ │ ├── UniformResourceLocatable.graphql.swift │ │ │ ├── Updatable.graphql.swift │ │ │ └── UpdatableComment.graphql.swift │ │ │ ├── Objects │ │ │ ├── AddedToProjectEvent.graphql.swift │ │ │ ├── App.graphql.swift │ │ │ ├── AssignedEvent.graphql.swift │ │ │ ├── AutomaticBaseChangeFailedEvent.graphql.swift │ │ │ ├── AutomaticBaseChangeSucceededEvent.graphql.swift │ │ │ ├── BaseRefChangedEvent.graphql.swift │ │ │ ├── BaseRefForcePushedEvent.graphql.swift │ │ │ ├── Blob.graphql.swift │ │ │ ├── Bot.graphql.swift │ │ │ ├── BranchProtectionRule.graphql.swift │ │ │ ├── CheckRun.graphql.swift │ │ │ ├── CheckSuite.graphql.swift │ │ │ ├── ClosedEvent.graphql.swift │ │ │ ├── CodeOfConduct.graphql.swift │ │ │ ├── CommentDeletedEvent.graphql.swift │ │ │ ├── Commit.graphql.swift │ │ │ ├── CommitComment.graphql.swift │ │ │ ├── CommitCommentThread.graphql.swift │ │ │ ├── ConnectedEvent.graphql.swift │ │ │ ├── ConvertToDraftEvent.graphql.swift │ │ │ ├── ConvertedNoteToIssueEvent.graphql.swift │ │ │ ├── CrossReferencedEvent.graphql.swift │ │ │ ├── DemilestonedEvent.graphql.swift │ │ │ ├── DependencyGraphManifest.graphql.swift │ │ │ ├── DeployKey.graphql.swift │ │ │ ├── DeployedEvent.graphql.swift │ │ │ ├── Deployment.graphql.swift │ │ │ ├── DeploymentEnvironmentChangedEvent.graphql.swift │ │ │ ├── DeploymentStatus.graphql.swift │ │ │ ├── DisconnectedEvent.graphql.swift │ │ │ ├── Enterprise.graphql.swift │ │ │ ├── EnterpriseAdministratorInvitation.graphql.swift │ │ │ ├── EnterpriseIdentityProvider.graphql.swift │ │ │ ├── EnterpriseRepositoryInfo.graphql.swift │ │ │ ├── EnterpriseServerInstallation.graphql.swift │ │ │ ├── EnterpriseServerUserAccount.graphql.swift │ │ │ ├── EnterpriseServerUserAccountEmail.graphql.swift │ │ │ ├── EnterpriseServerUserAccountsUpload.graphql.swift │ │ │ ├── EnterpriseUserAccount.graphql.swift │ │ │ ├── ExternalIdentity.graphql.swift │ │ │ ├── Gist.graphql.swift │ │ │ ├── GistComment.graphql.swift │ │ │ ├── HeadRefDeletedEvent.graphql.swift │ │ │ ├── HeadRefForcePushedEvent.graphql.swift │ │ │ ├── HeadRefRestoredEvent.graphql.swift │ │ │ ├── IpAllowListEntry.graphql.swift │ │ │ ├── Issue.graphql.swift │ │ │ ├── IssueComment.graphql.swift │ │ │ ├── IssueCommentConnection.graphql.swift │ │ │ ├── IssueConnection.graphql.swift │ │ │ ├── Label.graphql.swift │ │ │ ├── LabeledEvent.graphql.swift │ │ │ ├── Language.graphql.swift │ │ │ ├── License.graphql.swift │ │ │ ├── LockedEvent.graphql.swift │ │ │ ├── Mannequin.graphql.swift │ │ │ ├── MarkedAsDuplicateEvent.graphql.swift │ │ │ ├── MarketplaceCategory.graphql.swift │ │ │ ├── MarketplaceListing.graphql.swift │ │ │ ├── MembersCanDeleteReposClearAuditEntry.graphql.swift │ │ │ ├── MembersCanDeleteReposDisableAuditEntry.graphql.swift │ │ │ ├── MembersCanDeleteReposEnableAuditEntry.graphql.swift │ │ │ ├── MentionedEvent.graphql.swift │ │ │ ├── MergedEvent.graphql.swift │ │ │ ├── Milestone.graphql.swift │ │ │ ├── MilestonedEvent.graphql.swift │ │ │ ├── MovedColumnsInProjectEvent.graphql.swift │ │ │ ├── OauthApplicationCreateAuditEntry.graphql.swift │ │ │ ├── OrgAddBillingManagerAuditEntry.graphql.swift │ │ │ ├── OrgAddMemberAuditEntry.graphql.swift │ │ │ ├── OrgBlockUserAuditEntry.graphql.swift │ │ │ ├── OrgConfigDisableCollaboratorsOnlyAuditEntry.graphql.swift │ │ │ ├── OrgConfigEnableCollaboratorsOnlyAuditEntry.graphql.swift │ │ │ ├── OrgCreateAuditEntry.graphql.swift │ │ │ ├── OrgDisableOauthAppRestrictionsAuditEntry.graphql.swift │ │ │ ├── OrgDisableSamlAuditEntry.graphql.swift │ │ │ ├── OrgDisableTwoFactorRequirementAuditEntry.graphql.swift │ │ │ ├── OrgEnableOauthAppRestrictionsAuditEntry.graphql.swift │ │ │ ├── OrgEnableSamlAuditEntry.graphql.swift │ │ │ ├── OrgEnableTwoFactorRequirementAuditEntry.graphql.swift │ │ │ ├── OrgInviteMemberAuditEntry.graphql.swift │ │ │ ├── OrgInviteToBusinessAuditEntry.graphql.swift │ │ │ ├── OrgOauthAppAccessApprovedAuditEntry.graphql.swift │ │ │ ├── OrgOauthAppAccessDeniedAuditEntry.graphql.swift │ │ │ ├── OrgOauthAppAccessRequestedAuditEntry.graphql.swift │ │ │ ├── OrgRemoveBillingManagerAuditEntry.graphql.swift │ │ │ ├── OrgRemoveMemberAuditEntry.graphql.swift │ │ │ ├── OrgRemoveOutsideCollaboratorAuditEntry.graphql.swift │ │ │ ├── OrgRestoreMemberAuditEntry.graphql.swift │ │ │ ├── OrgRestoreMemberMembershipOrganizationAuditEntryData.graphql.swift │ │ │ ├── OrgRestoreMemberMembershipRepositoryAuditEntryData.graphql.swift │ │ │ ├── OrgRestoreMemberMembershipTeamAuditEntryData.graphql.swift │ │ │ ├── OrgUnblockUserAuditEntry.graphql.swift │ │ │ ├── OrgUpdateDefaultRepositoryPermissionAuditEntry.graphql.swift │ │ │ ├── OrgUpdateMemberAuditEntry.graphql.swift │ │ │ ├── OrgUpdateMemberRepositoryCreationPermissionAuditEntry.graphql.swift │ │ │ ├── OrgUpdateMemberRepositoryInvitationPermissionAuditEntry.graphql.swift │ │ │ ├── Organization.graphql.swift │ │ │ ├── OrganizationIdentityProvider.graphql.swift │ │ │ ├── OrganizationInvitation.graphql.swift │ │ │ ├── Package.graphql.swift │ │ │ ├── PackageFile.graphql.swift │ │ │ ├── PackageTag.graphql.swift │ │ │ ├── PackageVersion.graphql.swift │ │ │ ├── PinnedEvent.graphql.swift │ │ │ ├── PinnedIssue.graphql.swift │ │ │ ├── PrivateRepositoryForkingDisableAuditEntry.graphql.swift │ │ │ ├── PrivateRepositoryForkingEnableAuditEntry.graphql.swift │ │ │ ├── Project.graphql.swift │ │ │ ├── ProjectCard.graphql.swift │ │ │ ├── ProjectColumn.graphql.swift │ │ │ ├── PublicKey.graphql.swift │ │ │ ├── PullRequest.graphql.swift │ │ │ ├── PullRequestCommit.graphql.swift │ │ │ ├── PullRequestCommitCommentThread.graphql.swift │ │ │ ├── PullRequestReview.graphql.swift │ │ │ ├── PullRequestReviewComment.graphql.swift │ │ │ ├── PullRequestReviewThread.graphql.swift │ │ │ ├── Push.graphql.swift │ │ │ ├── PushAllowance.graphql.swift │ │ │ ├── Query.graphql.swift │ │ │ ├── Reaction.graphql.swift │ │ │ ├── ReadyForReviewEvent.graphql.swift │ │ │ ├── Ref.graphql.swift │ │ │ ├── ReferencedEvent.graphql.swift │ │ │ ├── Release.graphql.swift │ │ │ ├── ReleaseAsset.graphql.swift │ │ │ ├── RemovedFromProjectEvent.graphql.swift │ │ │ ├── RenamedTitleEvent.graphql.swift │ │ │ ├── ReopenedEvent.graphql.swift │ │ │ ├── RepoAccessAuditEntry.graphql.swift │ │ │ ├── RepoAddMemberAuditEntry.graphql.swift │ │ │ ├── RepoAddTopicAuditEntry.graphql.swift │ │ │ ├── RepoArchivedAuditEntry.graphql.swift │ │ │ ├── RepoChangeMergeSettingAuditEntry.graphql.swift │ │ │ ├── RepoConfigDisableAnonymousGitAccessAuditEntry.graphql.swift │ │ │ ├── RepoConfigDisableCollaboratorsOnlyAuditEntry.graphql.swift │ │ │ ├── RepoConfigDisableContributorsOnlyAuditEntry.graphql.swift │ │ │ ├── RepoConfigDisableSockpuppetDisallowedAuditEntry.graphql.swift │ │ │ ├── RepoConfigEnableAnonymousGitAccessAuditEntry.graphql.swift │ │ │ ├── RepoConfigEnableCollaboratorsOnlyAuditEntry.graphql.swift │ │ │ ├── RepoConfigEnableContributorsOnlyAuditEntry.graphql.swift │ │ │ ├── RepoConfigEnableSockpuppetDisallowedAuditEntry.graphql.swift │ │ │ ├── RepoConfigLockAnonymousGitAccessAuditEntry.graphql.swift │ │ │ ├── RepoConfigUnlockAnonymousGitAccessAuditEntry.graphql.swift │ │ │ ├── RepoCreateAuditEntry.graphql.swift │ │ │ ├── RepoDestroyAuditEntry.graphql.swift │ │ │ ├── RepoRemoveMemberAuditEntry.graphql.swift │ │ │ ├── RepoRemoveTopicAuditEntry.graphql.swift │ │ │ ├── Repository.graphql.swift │ │ │ ├── RepositoryInvitation.graphql.swift │ │ │ ├── RepositoryTopic.graphql.swift │ │ │ ├── RepositoryVisibilityChangeDisableAuditEntry.graphql.swift │ │ │ ├── RepositoryVisibilityChangeEnableAuditEntry.graphql.swift │ │ │ ├── RepositoryVulnerabilityAlert.graphql.swift │ │ │ ├── ReviewDismissalAllowance.graphql.swift │ │ │ ├── ReviewDismissedEvent.graphql.swift │ │ │ ├── ReviewRequest.graphql.swift │ │ │ ├── ReviewRequestRemovedEvent.graphql.swift │ │ │ ├── ReviewRequestedEvent.graphql.swift │ │ │ ├── SavedReply.graphql.swift │ │ │ ├── SecurityAdvisory.graphql.swift │ │ │ ├── SponsorsListing.graphql.swift │ │ │ ├── SponsorsTier.graphql.swift │ │ │ ├── Sponsorship.graphql.swift │ │ │ ├── Status.graphql.swift │ │ │ ├── StatusCheckRollup.graphql.swift │ │ │ ├── StatusContext.graphql.swift │ │ │ ├── SubscribedEvent.graphql.swift │ │ │ ├── Tag.graphql.swift │ │ │ ├── Team.graphql.swift │ │ │ ├── TeamAddMemberAuditEntry.graphql.swift │ │ │ ├── TeamAddRepositoryAuditEntry.graphql.swift │ │ │ ├── TeamChangeParentTeamAuditEntry.graphql.swift │ │ │ ├── TeamDiscussion.graphql.swift │ │ │ ├── TeamDiscussionComment.graphql.swift │ │ │ ├── TeamRemoveMemberAuditEntry.graphql.swift │ │ │ ├── TeamRemoveRepositoryAuditEntry.graphql.swift │ │ │ ├── Topic.graphql.swift │ │ │ ├── TransferredEvent.graphql.swift │ │ │ ├── Tree.graphql.swift │ │ │ ├── UnassignedEvent.graphql.swift │ │ │ ├── UnlabeledEvent.graphql.swift │ │ │ ├── UnlockedEvent.graphql.swift │ │ │ ├── UnmarkedAsDuplicateEvent.graphql.swift │ │ │ ├── UnpinnedEvent.graphql.swift │ │ │ ├── UnsubscribedEvent.graphql.swift │ │ │ ├── User.graphql.swift │ │ │ ├── UserBlockedEvent.graphql.swift │ │ │ ├── UserContentEdit.graphql.swift │ │ │ └── UserStatus.graphql.swift │ │ │ ├── SchemaConfiguration.swift │ │ │ ├── SchemaMetadata.graphql.swift │ │ │ └── Unions │ │ │ └── IssueOrPullRequest.graphql.swift │ ├── Info.plist │ └── graphql │ │ ├── Queries │ │ ├── IssuesAndCommentsForRepository.graphql │ │ ├── Repository.graphql │ │ └── TestFolder │ │ │ └── TestFolder2 │ │ │ └── TestFolder3 │ │ │ └── RepoURL.graphql │ │ ├── operationIDs.json │ │ └── schema.graphqls ├── StarWarsAPI │ ├── Info.plist │ ├── StarWarsAPI │ │ ├── Package.swift │ │ └── Sources │ │ │ ├── Fragments │ │ │ ├── CharacterAppearsIn.graphql.swift │ │ │ ├── CharacterName.graphql.swift │ │ │ ├── CharacterNameAndAppearsIn.graphql.swift │ │ │ ├── CharacterNameAndAppearsInWithNestedFragments.graphql.swift │ │ │ ├── CharacterNameAndDroidAppearsIn.graphql.swift │ │ │ ├── CharacterNameAndDroidPrimaryFunction.graphql.swift │ │ │ ├── CharacterNameWithInlineFragment.graphql.swift │ │ │ ├── CharacterNameWithNestedAppearsInFragment.graphql.swift │ │ │ ├── DroidDetails.graphql.swift │ │ │ ├── DroidName.graphql.swift │ │ │ ├── DroidNameAndPrimaryFunction.graphql.swift │ │ │ ├── DroidPrimaryFunction.graphql.swift │ │ │ ├── FriendsNames.graphql.swift │ │ │ ├── HeroDetails.graphql.swift │ │ │ └── HumanHeightWithVariable.graphql.swift │ │ │ ├── Operations │ │ │ ├── Mutations │ │ │ │ ├── CreateAwesomeReviewMutation.graphql.swift │ │ │ │ ├── CreateReviewForEpisodeMutation.graphql.swift │ │ │ │ └── CreateReviewWithNullFieldMutation.graphql.swift │ │ │ ├── Queries │ │ │ │ ├── DroidDetailsWithFragmentQuery.graphql.swift │ │ │ │ ├── HeroAndFriendsIDsQuery.graphql.swift │ │ │ │ ├── HeroAndFriendsNamesQuery.graphql.swift │ │ │ │ ├── HeroAndFriendsNamesWithFragmentQuery.graphql.swift │ │ │ │ ├── HeroAndFriendsNamesWithFragmentTwiceQuery.graphql.swift │ │ │ │ ├── HeroAndFriendsNamesWithIDForParentOnlyQuery.graphql.swift │ │ │ │ ├── HeroAndFriendsNamesWithIDsQuery.graphql.swift │ │ │ │ ├── HeroAppearsInQuery.graphql.swift │ │ │ │ ├── HeroAppearsInWithFragmentQuery.graphql.swift │ │ │ │ ├── HeroDetailsFragmentConditionalInclusionQuery.graphql.swift │ │ │ │ ├── HeroDetailsInlineConditionalInclusionQuery.graphql.swift │ │ │ │ ├── HeroDetailsQuery.graphql.swift │ │ │ │ ├── HeroDetailsWithFragmentQuery.graphql.swift │ │ │ │ ├── HeroFriendsDetailsConditionalInclusionQuery.graphql.swift │ │ │ │ ├── HeroFriendsDetailsUnconditionalAndConditionalInclusionQuery.graphql.swift │ │ │ │ ├── HeroFriendsOfFriendsNamesQuery.graphql.swift │ │ │ │ ├── HeroNameAndAppearsInQuery.graphql.swift │ │ │ │ ├── HeroNameAndAppearsInWithFragmentQuery.graphql.swift │ │ │ │ ├── HeroNameConditionalBothQuery.graphql.swift │ │ │ │ ├── HeroNameConditionalBothSeparateQuery.graphql.swift │ │ │ │ ├── HeroNameConditionalExclusionQuery.graphql.swift │ │ │ │ ├── HeroNameConditionalInclusionQuery.graphql.swift │ │ │ │ ├── HeroNameQuery.graphql.swift │ │ │ │ ├── HeroNameTypeSpecificConditionalInclusionQuery.graphql.swift │ │ │ │ ├── HeroNameWithFragmentAndIDQuery.graphql.swift │ │ │ │ ├── HeroNameWithFragmentQuery.graphql.swift │ │ │ │ ├── HeroNameWithIDQuery.graphql.swift │ │ │ │ ├── HeroParentTypeDependentFieldQuery.graphql.swift │ │ │ │ ├── HeroTypeDependentAliasedFieldQuery.graphql.swift │ │ │ │ ├── HumanQuery.graphql.swift │ │ │ │ ├── SameHeroTwiceQuery.graphql.swift │ │ │ │ ├── SearchQuery.graphql.swift │ │ │ │ ├── StarshipCoordinatesQuery.graphql.swift │ │ │ │ ├── StarshipQuery.graphql.swift │ │ │ │ └── TwoHeroesQuery.graphql.swift │ │ │ └── Subscriptions │ │ │ │ └── ReviewAddedSubscription.graphql.swift │ │ │ └── Schema │ │ │ ├── CustomScalars │ │ │ └── ID.swift │ │ │ ├── Enums │ │ │ └── Episode.graphql.swift │ │ │ ├── InputObjects │ │ │ ├── ColorInput.graphql.swift │ │ │ └── ReviewInput.graphql.swift │ │ │ ├── Interfaces │ │ │ └── Character.graphql.swift │ │ │ ├── Objects │ │ │ ├── Droid.graphql.swift │ │ │ ├── Human.graphql.swift │ │ │ ├── Mutation.graphql.swift │ │ │ ├── Query.graphql.swift │ │ │ ├── Review.graphql.swift │ │ │ ├── Starship.graphql.swift │ │ │ └── Subscription.graphql.swift │ │ │ ├── SchemaConfiguration.swift │ │ │ ├── SchemaMetadata.graphql.swift │ │ │ └── Unions │ │ │ └── SearchResult.graphql.swift │ └── starwars-graphql │ │ ├── API.json │ │ ├── CharacterAndSubTypesFragments.graphql │ │ ├── CreateReviewForEpisode.graphql │ │ ├── HeroAndFriendsNames.graphql │ │ ├── HeroAndFriendsNamesWithFragment.graphql │ │ ├── HeroAppearsIn.graphql │ │ ├── HeroConditional.graphql │ │ ├── HeroDetails.graphql │ │ ├── HeroFriendsOfFriends.graphql │ │ ├── HeroName.graphql │ │ ├── HeroNameAndAppearsIn.graphql │ │ ├── HeroParentTypeDependentField.graphql │ │ ├── HeroTypeDependentAliasedField.graphql │ │ ├── SameHeroTwice.graphql │ │ ├── Search.graphql │ │ ├── Starship.graphql │ │ ├── SubscribeReview.graphql │ │ ├── TestFolder │ │ └── TestFolder2 │ │ │ └── Human.graphql │ │ ├── TwoHeroes.graphql │ │ ├── operationIDs.json │ │ ├── schema.graphqls │ │ └── schema.json ├── SubscriptionAPI │ ├── Info.plist │ ├── SubscriptionAPI │ │ ├── Package.swift │ │ └── Sources │ │ │ ├── Operations │ │ │ └── Subscriptions │ │ │ │ └── IncrementingSubscription.graphql.swift │ │ │ └── Schema │ │ │ ├── Objects │ │ │ └── Subscription.graphql.swift │ │ │ ├── SchemaConfiguration.swift │ │ │ └── SchemaMetadata.graphql.swift │ └── graphql │ │ ├── schema.graphqls │ │ └── subscription.graphql └── UploadAPI │ ├── Info.plist │ ├── UploadAPI │ ├── Package.swift │ └── Sources │ │ ├── Operations │ │ └── Mutations │ │ │ ├── UploadMultipleFilesToDifferentParametersMutation.graphql.swift │ │ │ ├── UploadMultipleFilesToTheSameParameterMutation.graphql.swift │ │ │ └── UploadOneFileMutation.graphql.swift │ │ └── Schema │ │ ├── CustomScalars │ │ ├── ID.swift │ │ └── Upload.swift │ │ ├── Objects │ │ ├── File.graphql.swift │ │ └── Mutation.graphql.swift │ │ ├── SchemaConfiguration.swift │ │ └── SchemaMetadata.graphql.swift │ └── graphql │ ├── UploadMultipleFiles.graphql │ ├── UploadOneFile.graphql │ ├── operationIDs.json │ └── schema.graphqls ├── SwiftScripts ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── Codegen.xcscheme │ │ ├── DocumentationGenerator.xcscheme │ │ ├── SchemaDownload.xcscheme │ │ └── SwiftScripts-Package.xcscheme ├── Package.resolved ├── Package.swift ├── README.md ├── Sources │ ├── Codegen │ │ └── Codegen.swift │ ├── DocumentationGenerator │ │ └── main.swift │ ├── SchemaDownload │ │ └── main.swift │ ├── SwiftScriptHelpers │ │ └── FileFinder.swift │ └── TargetConfig │ │ ├── ArgumentError.swift │ │ ├── Module.swift │ │ └── Target.swift └── Tests │ └── CodegenTests │ └── CodegenTests.swift ├── Tests ├── ApolloCodegenInternalTestHelpers │ ├── AsyncMap.swift │ ├── DirectiveHelpers.swift │ ├── GraphQLJSFrontend+TestHelpers.swift │ ├── IR+InclusionConditionsMock.swift │ ├── IRBuilder+Mocking.swift │ ├── IRBuilderTestWrapper.swift │ ├── IRTestWrapper.swift │ ├── Info.plist │ ├── MockApolloCodegenConfiguration.swift │ ├── MockCompilationResult.swift │ ├── MockFileGenerator.swift │ ├── MockFileManager.swift │ ├── MockFileTemplate.swift │ ├── MockGraphQLType.swift │ ├── MockIRSubscripts.swift │ ├── MockMergedSelections.swift │ ├── MockNetworkSession.swift │ ├── MockTemplateRenderer.swift │ ├── MockValidationOptions.swift │ ├── Resources.swift │ └── ScopedChildSelectionSetAccessible.swift ├── ApolloCodegenLibWrapper │ └── Info.plist ├── ApolloCodegenTests │ ├── AnimalKingdomAPI │ │ └── AnimalKingdomIRCreationTests.swift │ ├── ApolloCodegenConfigurationCodableTests.swift │ ├── ApolloCodegenConfigurationTests.swift │ ├── ApolloCodegenTests.swift │ ├── ApolloSchemaDownloadConfigurationCodableTests.swift │ ├── ApolloSchemaDownloaderInternalTests.swift │ ├── ApolloSchemaDownloaderPublicTests.swift │ ├── CodeGenIR │ │ ├── IRCustomScalarTests.swift │ │ ├── IRFieldCollectorTests.swift │ │ ├── IRInputObjectTests.swift │ │ ├── IRMergedSelections_FieldMergingStrategy_Tests.swift │ │ ├── IRNamedFragmentBuilderTests.swift │ │ ├── IROperationBuilderTests.swift │ │ ├── IRRootFieldBuilderTests.swift │ │ └── IRSelectionSet_IncludeSkip_Tests.swift │ ├── CodeGeneration │ │ ├── FileGenerators │ │ │ ├── CustomScalarFileGeneratorTests.swift │ │ │ ├── EnumFileGeneratorTests.swift │ │ │ ├── FileGeneratorTests.swift │ │ │ ├── FileGenerator_ResolvePath_Tests.swift │ │ │ ├── FragmentFileGeneratorTests.swift │ │ │ ├── InputObjectFileGeneratorTests.swift │ │ │ ├── InterfaceFileGeneratorTests.swift │ │ │ ├── MockInterfacesFileGeneratorTests.swift │ │ │ ├── MockObjectFileGeneratorTests.swift │ │ │ ├── MockUnionsFileGeneratorTests.swift │ │ │ ├── ObjectFileGeneratorTests.swift │ │ │ ├── OperationFileGeneratorTests.swift │ │ │ ├── OperationManifestFileGeneratorTests.swift │ │ │ ├── SchemaConfigurationFileGeneratorTests.swift │ │ │ ├── SchemaMetadataFileGeneratorTests.swift │ │ │ ├── SchemaModuleFileGeneratorTests.swift │ │ │ └── UnionFileGeneratorTests.swift │ │ └── Templates │ │ │ ├── CustomScalarTemplateTests.swift │ │ │ ├── DeferredFragmentsMetadataTemplateTests.swift │ │ │ ├── EnumTemplateTests.swift │ │ │ ├── FragmentTemplateTests.swift │ │ │ ├── InputObjectTemplateTests.swift │ │ │ ├── InterfaceTemplateTests.swift │ │ │ ├── LegacyAPQOperationManifestTemplateTests.swift │ │ │ ├── LocalCacheMutationDefinitionTemplateTests.swift │ │ │ ├── MockInterfacesTemplateTests.swift │ │ │ ├── MockObjectTemplateTests.swift │ │ │ ├── MockUnionsTemplateTests.swift │ │ │ ├── ObjectTemplateTests.swift │ │ │ ├── OneOfInputObjectTemplateTests.swift │ │ │ ├── OperationDefinitionTemplateTests.swift │ │ │ ├── OperationDefinitionTemplate_DocumentType_Tests.swift │ │ │ ├── OperationDefinition_VariableDefinition_Tests.swift │ │ │ ├── PersistedQueriesOperationManifestTemplateTests.swift │ │ │ ├── SchemaConfigurationTemplateTests.swift │ │ │ ├── SchemaMetadataTemplateTests.swift │ │ │ ├── SchemaModuleNamespaceTemplateTests.swift │ │ │ ├── SelectionSet │ │ │ ├── SelectionSetTemplateTests.swift │ │ │ ├── SelectionSetTemplate_ErrorHandling_Tests.swift │ │ │ ├── SelectionSetTemplate_FieldMerging_Tests.swift │ │ │ ├── SelectionSetTemplate_Initializers_Tests.swift │ │ │ └── SelectionSetTemplate_LocalCacheMutation_Tests.swift │ │ │ ├── SwiftPackageManagerModuleTemplateTests.swift │ │ │ ├── TemplateRenderer_OperationFile_Tests.swift │ │ │ ├── TemplateRenderer_SchemaFile_Tests.swift │ │ │ ├── TemplateRenderer_TestMockFile_Tests.swift │ │ │ ├── TemplateString_DeprecationMessage_Tests.swift │ │ │ ├── TemplateString_Documentation_Tests.swift │ │ │ └── UnionTemplateTests.swift │ ├── Configuration │ │ ├── ApolloCodegenConfiguration+ReduceGeneratedSchemaTypesTests.swift │ │ └── ApolloCodegenConfiguration+SchemaCustomizationTests.swift │ ├── Extensions │ │ ├── GraphQLNamedType+SwiftTests.swift │ │ └── String+Data.swift │ ├── FileManagerExtensionTests.swift │ ├── Frontend │ │ ├── CompilationApolloSpecificDirectiveTests.swift │ │ ├── CompilationResultSchemaDocumentationTests.swift │ │ ├── CompilationTests.swift │ │ ├── DocumentParsingAndValidationTests.swift │ │ └── SchemaLoadingTests.swift │ ├── GlobTests.swift │ ├── Info.plist │ ├── OperationDescriptorTests.swift │ ├── OperationIdentifierFactoryTests.swift │ ├── PluralizerTests.swift │ ├── Resources │ │ ├── introspection_response.json │ │ └── introspection_response_with_defer_directive.json │ ├── SourcePackages │ │ └── .keep │ ├── TestHelpers │ │ ├── IRMatchers.swift │ │ ├── LineByLineComparison.swift │ │ └── SelectionSetTemplate+SectionRendering.swift │ ├── URLDownloaderTests.swift │ └── URLExtensionsTests.swift ├── ApolloInternalTestHelpers │ ├── AsyncResultObserver.swift │ ├── ConcurrentTaskContainer.swift │ ├── FileFinder.swift │ ├── Info.plist │ ├── InterceptorTester.swift │ ├── Matchable.swift │ ├── MockApolloStore.swift │ ├── MockGraphQLServer.swift │ ├── MockHTTPRequest.swift │ ├── MockHTTPResponse.swift │ ├── MockInterceptorProvider.swift │ ├── MockLocalCacheMutation.swift │ ├── MockNetworkTransport.swift │ ├── MockOperation.swift │ ├── MockSchemaMetadata.swift │ ├── MockURLProtocol.swift │ ├── MockURLSession.swift │ ├── MockWebSocket.swift │ ├── MockWebSocketDelegate.swift │ ├── Resources │ │ ├── a.txt │ │ ├── b.txt │ │ └── c.txt │ ├── SQLiteTestCacheProvider.swift │ ├── SelectionSet+TestHelpers.swift │ ├── String+Data.swift │ ├── TestCacheProvider.swift │ ├── TestError.swift │ ├── TestFileHelper.swift │ ├── TestFilePathBuilder.swift │ ├── TestIsolatedFileManager.swift │ ├── TestObserver.swift │ ├── TestURLs.swift │ ├── XCTAssertHelpers.swift │ └── XCTestCase+Helpers.swift ├── ApolloPaginationTests │ ├── AsyncGraphQLQueryPagerCoordinatorTests.swift │ ├── AsyncGraphQLQueryPagerTests.swift │ ├── BidirectionalPaginationTests.swift │ ├── ConcurrencyTest.swift │ ├── ForwardPaginationTests.swift │ ├── FriendsQuery+TestHelpers.swift │ ├── GraphQLQueryPagerCoordinatorTests.swift │ ├── GraphQLQueryPagerTests.swift │ ├── Info.plist │ ├── Mocks.swift │ ├── OffsetTests.swift │ ├── PaginationError+Test.swift │ ├── ReversePaginationTests.swift │ ├── SubscribeTests.swift │ └── XCTAssert+Async.swift ├── ApolloPerformanceTests │ ├── Info.plist │ ├── ParsingPerformanceTests.swift │ ├── Responses │ │ └── IssuesAndCommentsForRepository.json │ ├── SelectionSetInitializerPerformanceTests.swift │ └── TypeCaseConversionPerformanceTests.swift ├── ApolloTests │ ├── ApolloClientOperationTests.swift │ ├── AutomaticPersistedQueriesTests.swift │ ├── BatchedLoadTests.swift │ ├── BlindRetryingTestInterceptor.swift │ ├── Cache │ │ ├── CacheDependentInterceptorTests.swift │ │ ├── CacheKeyConstructionTests.swift │ │ ├── DeferOperationCacheReadTests.swift │ │ ├── DeferOperationCacheWriteTests.swift │ │ ├── FetchQueryTests.swift │ │ ├── LoadQueryFromStoreTests.swift │ │ ├── ReadWriteFromStoreTests.swift │ │ ├── SQLite │ │ │ ├── CachePersistenceTests.swift │ │ │ └── SQLiteCacheTests.swift │ │ ├── StoreConcurrencyTests.swift │ │ ├── StoreSubscriptionTests.swift │ │ └── WatchQueryTests.swift │ ├── CacheKeyForFieldTests.swift │ ├── CacheKeyResolutionTests.swift │ ├── CancellationHandlingInterceptor.swift │ ├── ClearCacheTests.swift │ ├── DataDictMergingTests.swift │ ├── DataLoaderTests.swift │ ├── DefaultInterceptorProviderTests.swift │ ├── DeferTests.swift │ ├── ExecutionSources │ │ ├── NetworkResponseExecutionSource_OpaqueObjectDataWrapper_Tests.swift │ │ └── SelectionSetModelExecutionSource_OpaqueObjectDataWrapper_Tests.swift │ ├── GETTransformerTests.swift │ ├── GraphQLExecutor_ResultNormalizer_FromResponse_Tests.swift │ ├── GraphQLExecutor_SelectionSetMapper_FromResponse_Tests.swift │ ├── GraphQLFileTests.swift │ ├── GraphQLMapEncodingTests.swift │ ├── GraphQLResponseTests.swift │ ├── GraphQLResultTests.swift │ ├── HTTPURLResponseExtensionTests.swift │ ├── IncrementalGraphQLResponseTests.swift │ ├── Info.plist │ ├── InputDictTests.swift │ ├── Interceptors │ │ ├── IncrementalJSONResponseParsingInterceptorTests.swift │ │ ├── JSONResponseParsingInterceptorTests.swift │ │ ├── MaxRetryInterceptorTests.swift │ │ ├── MultipartResponseDeferParserTests.swift │ │ ├── MultipartResponseParsingInterceptorTests.swift │ │ ├── MultipartResponseSubscriptionParserTests.swift │ │ └── ResponseCodeInterceptorTests.swift │ ├── JSONTests.swift │ ├── JSONValueMatcher.swift │ ├── MultipartFormData+Testing.swift │ ├── MultipartFormDataTests.swift │ ├── MutatingSelectionSetTests.swift │ ├── Network │ │ └── URLSessionClientTests.swift │ ├── ObjectDataTransformerTests.swift │ ├── OperationMessageMatchers.swift │ ├── PossiblyDeferredTests.swift │ ├── RequestBodyCreatorTests.swift │ ├── RequestChainTests.swift │ ├── RequestClientMetadataTests.swift │ ├── RequestContextTimeoutTests.swift │ ├── ResponsePathTests.swift │ ├── RetryToCountThenSucceedInterceptor.swift │ ├── SQLiteDotSwiftDatabaseBehaviorTests.swift │ ├── SelectionField_CacheKeyForFieldTests.swift │ ├── SelectionSetTests.swift │ ├── SelectionSet_JSONInitializerTests.swift │ ├── TestCustomRequestBodyCreator.swift │ ├── TestMockTests.swift │ ├── URL+QueryDict.swift │ ├── UploadRequestTests.swift │ └── WebSocket │ │ ├── CompressionTests.swift │ │ ├── GraphqlTransportWsProtocolTests.swift │ │ ├── GraphqlWsProtocolTests.swift │ │ ├── OperationMessageIdCreatorTests.swift │ │ ├── SplitNetworkTransportTests.swift │ │ ├── WSProtocolTestsBase.swift │ │ ├── WebSocketTests.swift │ │ └── WebSocketTransportTests.swift ├── ApolloWrapper │ └── Info.plist ├── CodegenCLITests │ ├── Commands │ │ ├── FetchSchemaTests.swift │ │ ├── GenerateOperationManifestTests.swift │ │ ├── GenerateTests.swift │ │ └── InitializeTests.swift │ ├── Info.plist │ ├── Matchers │ │ └── ErrorMatchers.swift │ ├── Support │ │ ├── MockApolloCodegen.swift │ │ ├── MockApolloCodegenConfiguration.swift │ │ ├── MockApolloSchemaDownloader.swift │ │ ├── MockFileManager.swift │ │ ├── MockLogLevelSetter.swift │ │ └── TestSupport.swift │ ├── VersionCheckerTests.swift │ ├── pod-install-test │ │ ├── Podfile │ │ ├── operation.graphql │ │ ├── pod-install-test.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── pod-install-test │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Preview Content │ │ │ │ └── Preview Assets.xcassets │ │ │ │ │ └── Contents.json │ │ │ ├── pod_install_test.entitlements │ │ │ └── pod_install_testApp.swift │ │ └── schema.graphqls │ └── swiftpm-test │ │ ├── Package.swift │ │ ├── Sources │ │ └── swiftpm-test │ │ │ └── swiftpm_test.swift │ │ ├── apollo-codegen-config.json │ │ └── graphql │ │ ├── operation.graphql │ │ └── schema.graphqls ├── CodegenIntegrationTests │ └── Tests │ │ ├── 2691-scalarNameConflictsWithSelectionSet │ │ ├── README.MD │ │ ├── operation.graphql │ │ └── schema.graphqls │ │ ├── 3120-listOfCustomScalarsNeedsSetScalarList │ │ ├── README.MD │ │ ├── operation.graphql │ │ └── schema.graphqls │ │ ├── 3168-mergedSourceFromDefinitionRootNeedsFullyQualifedName │ │ ├── README.MD │ │ ├── operation.graphql │ │ └── schema.graphqls │ │ └── 3326-typeCaseWithOnlyReservedFieldSelectionIsNotCompositeInlineFragment │ │ ├── README.MD │ │ ├── operation.graphql │ │ └── schema.graphqls ├── TestCodeGenConfigurations │ ├── CodegenXCFramework │ │ ├── CodegenXCFramework.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ ├── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcuserdata │ │ │ │ │ └── zachfettersmoore.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── zachfettersmoore.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ ├── CodegenXCFramework │ │ │ └── MyAPI │ │ │ │ └── Schema │ │ │ │ ├── CustomScalars │ │ │ │ ├── CustomDate.swift │ │ │ │ ├── ID.swift │ │ │ │ └── Object.swift │ │ │ │ └── SchemaConfiguration.swift │ │ ├── apollo-codegen-config.json │ │ └── test-project.sh │ ├── EmbeddedInTarget-InSchemaModule │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── TestApp │ │ │ │ ├── AnimalKingdomAPI │ │ │ │ └── Schema │ │ │ │ │ └── SchemaConfiguration.swift │ │ │ │ └── TestApp.swift │ │ ├── Tests │ │ │ └── TestAppTests │ │ │ │ └── TestAppTests.swift │ │ ├── apollo-codegen-config.json │ │ └── test-project.sh │ ├── EmbeddedInTarget-RelativeAbsolute │ │ ├── PackageOne │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── PackageOne │ │ │ │ │ ├── PackageOne.swift │ │ │ │ │ └── graphql │ │ │ │ │ ├── AllAnimalsIncludeSkipQuery.graphql │ │ │ │ │ ├── AllAnimalsLocalCacheMutation.graphql │ │ │ │ │ ├── AllAnimalsQuery.graphql │ │ │ │ │ ├── AnimalSchema.graphqls │ │ │ │ │ ├── ClassroomPets.graphql │ │ │ │ │ ├── DogFragment.graphql │ │ │ │ │ ├── DogQuery.graphql │ │ │ │ │ ├── HeightInMeters.graphql │ │ │ │ │ ├── PetAdoptionMutation.graphql │ │ │ │ │ ├── PetDetails.graphql │ │ │ │ │ ├── PetDetailsMutation.graphql │ │ │ │ │ ├── PetSearchQuery.graphql │ │ │ │ │ └── WarmBloodedDetails.graphql │ │ │ └── Tests │ │ │ │ └── PackageOneTests │ │ │ │ └── PackageOneTests.swift │ │ ├── PackageTwo │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── PackageTwo │ │ │ │ │ └── PackageTwo.swift │ │ │ └── Tests │ │ │ │ └── PackageTwoTests │ │ │ │ └── PackageTwoTests.swift │ │ ├── apollo-codegen-config.json │ │ └── test-project.sh │ ├── Other-CocoaPods │ │ ├── CocoaPodsProject.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── CocoaPodsProject.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── CocoaPodsProject │ │ │ ├── AnimalKingdomAPI │ │ │ │ └── Schema │ │ │ │ │ └── SchemaConfiguration.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── CocoaPodsProject.entitlements │ │ │ ├── CocoaPodsProjectApp.swift │ │ │ ├── ContentView.swift │ │ │ └── Preview Content │ │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── CocoaPodsProjectTests │ │ │ └── CocoaPodsProjectTests.swift │ │ ├── Podfile │ │ ├── apollo-codegen-config.json │ │ └── test-project.sh │ ├── Other-CustomTarget │ │ ├── AnimalKingdomAPI │ │ │ └── AnimalKingdomAPI.h │ │ ├── CustomTargetProject.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── AnimalKingdomAPI.xcscheme │ │ │ │ ├── CustomTargetProject.xcscheme │ │ │ │ └── CustomTargetProjectTests.xcscheme │ │ ├── CustomTargetProject │ │ │ └── CustomTargetProject.h │ │ ├── CustomTargetProjectTests │ │ │ └── CustomTargetProjectTests.swift │ │ ├── apollo-codegen-config.json │ │ └── test-project.sh │ ├── SPMInXcodeProject │ │ ├── SPMInXcodeProject.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── SPMInXcodeProject.xcscheme │ │ ├── SPMInXcodeProject.xctestplan │ │ ├── SPMInXcodeProject │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Preview Content │ │ │ │ └── Preview Assets.xcassets │ │ │ │ │ └── Contents.json │ │ │ ├── SPMInXcodeProject.entitlements │ │ │ └── SPMInXcodeProjectApp.swift │ │ ├── SPMInXcodeProjectTests │ │ │ └── SPMInXcodeProjectTests.swift │ │ ├── apollo-codegen-config.json │ │ └── test-project.sh │ └── SwiftPackageManager │ │ ├── Package.swift │ │ ├── Sources │ │ └── TestApp │ │ │ └── TestApp.swift │ │ ├── Tests │ │ └── SwiftPackageTests │ │ │ └── TestMockUsageTests.swift │ │ ├── apollo-codegen-config.json │ │ └── test-project.sh └── TestPlans │ ├── Apollo-CITestPlan.xctestplan │ ├── Apollo-Codegen-CITestPlan.xctestplan │ ├── Apollo-CodegenTestPlan.xctestplan │ ├── Apollo-PaginationTestPlan.xctestplan │ ├── Apollo-PerformanceTestPlan.xctestplan │ ├── Apollo-UnitTestPlan.xctestplan │ └── CodegenCLITestPlan.xctestplan ├── Tuist └── ProjectDescriptionHelpers │ ├── Configuration │ └── ConfigurationName+Apollo.swift │ ├── Enums │ ├── ApolloTarget.swift │ └── ApolloTestPlan.swift │ ├── Settings │ └── Settings+Apollo.swift │ └── Targets │ ├── Target+AnimalKingdomAPI.swift │ ├── Target+ApolloCodegenInternalTestHelpers.swift │ ├── Target+ApolloCodegenLibWrapper.swift │ ├── Target+ApolloCodegenTests.swift │ ├── Target+ApolloInternalTestHelpers.swift │ ├── Target+ApolloPaginationTests.swift │ ├── Target+ApolloPerformanceTests.swift │ ├── Target+ApolloTests.swift │ ├── Target+ApolloWrapper.swift │ ├── Target+CodegenCLITests.swift │ ├── Target+GitHubAPI.swift │ ├── Target+StarWarsAPI.swift │ ├── Target+SubscriptionAPI.swift │ └── Target+UploadAPI.swift ├── Workspace.swift ├── apollo-ios-codegen ├── .circleci │ └── config.yml ├── .github │ ├── CODEOWNERS │ └── workflows │ │ └── pr-close.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources │ ├── ApolloCodegenLib │ │ ├── ApolloCodegen+Errors.swift │ │ ├── ApolloCodegen.swift │ │ ├── ApolloSchemaDownloadConfiguration.swift │ │ ├── ApolloSchemaDownloader.swift │ │ ├── CodegenConfiguration │ │ │ ├── ApolloCodegenConfiguration+OperationManifestConfiguration.swift │ │ │ ├── ApolloCodegenConfiguration+SchemaCustomization.swift │ │ │ └── ApolloCodegenConfiguration.swift │ │ ├── CodegenLogger.swift │ │ ├── ConfigurationValidation.swift │ │ ├── Constants.swift │ │ ├── Documentation.docc │ │ │ └── Documentation.md │ │ ├── FileGenerators │ │ │ ├── CustomScalarFileGenerator.swift │ │ │ ├── EnumFileGenerator.swift │ │ │ ├── FileGenerator.swift │ │ │ ├── FragmentFileGenerator.swift │ │ │ ├── InputObjectFileGenerator.swift │ │ │ ├── InterfaceFileGenerator.swift │ │ │ ├── MockInterfacesFileGenerator.swift │ │ │ ├── MockObjectFileGenerator.swift │ │ │ ├── MockUnionsFileGenerator.swift │ │ │ ├── ObjectFileGenerator.swift │ │ │ ├── OperationFileGenerator.swift │ │ │ ├── OperationManifestFileGenerator.swift │ │ │ ├── SchemaConfigurationFileGenerator.swift │ │ │ ├── SchemaMetadataFileGenerator.swift │ │ │ ├── SchemaModuleFileGenerator.swift │ │ │ └── UnionFileGenerator.swift │ │ ├── FileManager+Apollo.swift │ │ ├── Glob.swift │ │ ├── IR+Formatting.swift │ │ ├── OperationDescriptor.swift │ │ ├── OperationIdentifierFactory.swift │ │ ├── Pluralizer.swift │ │ ├── SelectionSetValidationContext.swift │ │ ├── StaticString+Apollo.swift │ │ ├── TemplateString+DeprecationMessage.swift │ │ ├── TemplateString+Documentation.swift │ │ ├── Templates │ │ │ ├── CustomScalarTemplate.swift │ │ │ ├── DeferredFragmentsMetadataTemplate.swift │ │ │ ├── EnumTemplate.swift │ │ │ ├── FragmentTemplate.swift │ │ │ ├── InputObjectTemplate.swift │ │ │ ├── InterfaceTemplate.swift │ │ │ ├── LegacyAPQOperationManifestTemplate.swift │ │ │ ├── LocalCacheMutationDefinitionTemplate.swift │ │ │ ├── MockInterfacesTemplate.swift │ │ │ ├── MockObjectTemplate.swift │ │ │ ├── MockUnionsTemplate.swift │ │ │ ├── ObjectTemplate.swift │ │ │ ├── OneOfInputObjectTemplate.swift │ │ │ ├── OperationDefinitionTemplate.swift │ │ │ ├── PersistedQueriesOperationManifestTemplate.swift │ │ │ ├── RenderingHelpers │ │ │ │ ├── ComputedSelectionSet+Iterators.swift │ │ │ │ ├── FieldArgumentRendering.swift │ │ │ │ ├── GraphQLCompositeType+SchemaTypeNamespace.swift │ │ │ │ ├── GraphQLInputField+Rendered.swift │ │ │ │ ├── GraphQLName+RenderingHelper.swift │ │ │ │ ├── GraphQLType+Rendered.swift │ │ │ │ ├── IRDefinition+RenderingHelpers.swift │ │ │ │ ├── InputVariableRenderable.swift │ │ │ │ ├── OperationTemplateRenderer.swift │ │ │ │ ├── String+Casing.swift │ │ │ │ ├── String+SingleLineConversion.swift │ │ │ │ └── String+SwiftNameEscaping.swift │ │ │ ├── SchemaConfigurationTemplate.swift │ │ │ ├── SchemaMetadataTemplate.swift │ │ │ ├── SchemaModuleNamespaceTemplate.swift │ │ │ ├── SelectionSetTemplate.swift │ │ │ ├── SwiftPackageManagerModuleTemplate.swift │ │ │ ├── TemplateRenderer.swift │ │ │ └── UnionTemplate.swift │ │ ├── URL+Apollo.swift │ │ ├── URLDownloader.swift │ │ ├── UntypedGraphQLRequestBodyCreator.swift │ │ └── ValidationOptions+ConfigInitializer.swift │ ├── CodegenCLI │ │ ├── Commands │ │ │ ├── FetchSchema.swift │ │ │ ├── Generate.swift │ │ │ ├── GenerateOperationManifest.swift │ │ │ └── Initialize.swift │ │ ├── Constants.swift │ │ ├── Error.swift │ │ ├── Extensions │ │ │ ├── FileManager+Data.swift │ │ │ ├── ParsableCommand+Apollo.swift │ │ │ ├── String+Data.swift │ │ │ └── VersionChecker.swift │ │ ├── OptionGroups │ │ │ └── InputOptions.swift │ │ └── Protocols │ │ │ ├── CodegenProvider.swift │ │ │ ├── LogLevelSetter.swift │ │ │ └── SchemaDownloadProvider.swift │ ├── GraphQLCompiler │ │ ├── ApolloCodegenFrontendBundle.swift │ │ ├── CompilationResult.swift │ │ ├── GraphQLError.swift │ │ ├── GraphQLJSFrontend.swift │ │ ├── GraphQLName.swift │ │ ├── GraphQLSchema.swift │ │ ├── GraphQLSource.swift │ │ ├── GraphQLType.swift │ │ ├── GraphQLValue.swift │ │ ├── JavaScript │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── auto_rollup.sh │ │ │ ├── jest.config.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── rollup.config.js │ │ │ ├── src │ │ │ │ ├── __testUtils__ │ │ │ │ │ ├── matchers.ts │ │ │ │ │ └── validationHelpers.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── deferDirectiveTests.ts │ │ │ │ │ ├── deprecatedEnumCasesCompilationTests.ts │ │ │ │ │ ├── inclusionConditionCompilationTests.ts │ │ │ │ │ ├── input-object-enum-test-schema.json │ │ │ │ │ ├── referencedFragmentsTests.ts │ │ │ │ │ ├── referencedTypesTests.ts │ │ │ │ │ ├── sourceDefinitionTransformTests.ts │ │ │ │ │ └── typePolicyDirectiveTests.ts │ │ │ │ ├── compiler │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── ir.ts │ │ │ │ │ └── values.ts │ │ │ │ ├── index.ts │ │ │ │ ├── utilities │ │ │ │ │ ├── apolloCodegenSchemaExtension.ts │ │ │ │ │ ├── experimentalDeferDirective.ts │ │ │ │ │ ├── graphql.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── legacySafelistingTransform.ts │ │ │ │ │ ├── nodeHelpers.ts │ │ │ │ │ ├── predicates.ts │ │ │ │ │ └── typePolicyDirective.ts │ │ │ │ └── validationRules.ts │ │ │ ├── tsconfig.base.json │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.test.base.json │ │ │ └── tsconfig.test.json │ │ ├── JavaScriptBridge.swift │ │ └── ValidationOptions.swift │ ├── IR │ │ ├── GraphQLCompositeType+Identifiable.swift │ │ ├── IR+ComputedSelectionSet.swift │ │ ├── IR+Definition.swift │ │ ├── IR+DefinitionEntityStorage.swift │ │ ├── IR+DirectSelections.swift │ │ ├── IR+Entity.swift │ │ ├── IR+EntitySelectionTree.swift │ │ ├── IR+FieldCollector.swift │ │ ├── IR+Fields.swift │ │ ├── IR+InclusionConditions.swift │ │ ├── IR+InlineFragmentSpread.swift │ │ ├── IR+MergedSelections.swift │ │ ├── IR+NamedFragment.swift │ │ ├── IR+NamedFragmentSpread.swift │ │ ├── IR+Operation.swift │ │ ├── IR+RootFieldBuilder.swift │ │ ├── IR+Schema.swift │ │ ├── IR+ScopeDescriptor.swift │ │ ├── IR+ScopedSelectionSetHashable.swift │ │ ├── IR+SelectionSet.swift │ │ └── IRBuilder.swift │ ├── TemplateString │ │ └── TemplateString.swift │ ├── Utilities │ │ ├── Collection+ConcurrentCompactMap.swift │ │ ├── IsEverTrue.swift │ │ └── LinkedList.swift │ └── apollo-ios-cli │ │ ├── Apollo_iOS_CLI.swift │ │ └── README.md ├── Tests │ └── README.md ├── makefile └── scripts │ ├── get-version.sh │ └── version-constants.sh ├── apollo-ios-pagination ├── .circleci │ └── config.yml ├── .github │ ├── CODEOWNERS │ ├── renovate.json5 │ └── workflows │ │ └── pr-close.yml ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ └── contents.xcworkspacedata ├── CONTRIBUTING.md ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md └── Sources │ └── ApolloPagination │ ├── AsyncGraphQLQueryPager.swift │ ├── AsyncGraphQLQueryPagerCoordinator.swift │ ├── CursorBasedPagination │ ├── BidirectionalPagination.swift │ ├── CursorBasedPagination.swift │ ├── ForwardPagination.swift │ └── ReversePagination.swift │ ├── GraphQLQueryPager+Convenience.swift │ ├── GraphQLQueryPager.swift │ ├── GraphQLQueryPagerCoordinator.swift │ ├── GraphQLQueryPagerOutput.swift │ ├── OffsetBasedPagination │ ├── Bidirectional.swift │ ├── ForwardOffset.swift │ ├── OffsetPagination.swift │ └── ReverseOffset.swift │ ├── PageExtractionData.swift │ ├── PaginationDirection.swift │ ├── PaginationError.swift │ ├── PaginationInfo.swift │ └── UpdateSource.swift ├── apollo-ios ├── .circleci │ └── config.yml ├── .gitattributes ├── .github │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.yaml │ │ ├── feature_request.yaml │ │ └── question.yaml │ └── workflows │ │ ├── issue-close-user-survey.yml │ │ ├── pr-close.yml │ │ └── prometheus-project-add.yml ├── .gitignore ├── .gitleaks.toml ├── .gitmodules ├── .spi.yml ├── Apollo.podspec ├── ApolloTestSupport.podspec ├── CHANGELOG.md ├── CLI │ └── apollo-ios-cli.tar.gz ├── CONTRIBUTING.md ├── CodegenProposal.md ├── Design │ └── 3093-graphql-defer.md ├── LICENSE ├── Package.swift ├── Plugins │ └── InstallCLI │ │ └── InstallCLIPluginCommand.swift ├── README.md ├── ROADMAP.md ├── Sources │ ├── Apollo │ │ ├── AnyGraphQLResponse.swift │ │ ├── ApolloClient.swift │ │ ├── ApolloClientProtocol.swift │ │ ├── ApolloErrorInterceptor.swift │ │ ├── ApolloInterceptor.swift │ │ ├── ApolloStore.swift │ │ ├── Atomic.swift │ │ ├── AutomaticPersistedQueryInterceptor.swift │ │ ├── Bundle+Helpers.swift │ │ ├── CacheReadInterceptor.swift │ │ ├── CacheWriteInterceptor.swift │ │ ├── Cancellable.swift │ │ ├── Collection+Helpers.swift │ │ ├── Constants.swift │ │ ├── DataDict+Merging.swift │ │ ├── DataDictMapper.swift │ │ ├── DataLoader.swift │ │ ├── DefaultInterceptorProvider.swift │ │ ├── Dictionary+Helpers.swift │ │ ├── DispatchQueue+Optional.swift │ │ ├── Documentation.docc │ │ │ ├── Documentation.md │ │ │ └── Index.md │ │ ├── ExecutionSources │ │ │ ├── CacheDataExecutionSource.swift │ │ │ ├── NetworkResponseExecutionSource.swift │ │ │ └── SelectionSetModelExecutionSource.swift │ │ ├── FieldSelectionCollector.swift │ │ ├── GraphQLDependencyTracker.swift │ │ ├── GraphQLError.swift │ │ ├── GraphQLExecutionSource.swift │ │ ├── GraphQLExecutor.swift │ │ ├── GraphQLFile.swift │ │ ├── GraphQLGETTransformer.swift │ │ ├── GraphQLHTTPMethod.swift │ │ ├── GraphQLHTTPRequestError.swift │ │ ├── GraphQLQueryWatcher.swift │ │ ├── GraphQLResponse.swift │ │ ├── GraphQLResult.swift │ │ ├── GraphQLResultAccumulator.swift │ │ ├── GraphQLResultNormalizer.swift │ │ ├── GraphQLSelectionSetMapper.swift │ │ ├── HTTPRequest.swift │ │ ├── HTTPResponse.swift │ │ ├── HTTPURLResponse+Helpers.swift │ │ ├── InMemoryNormalizedCache.swift │ │ ├── IncrementalGraphQLResponse.swift │ │ ├── IncrementalGraphQLResult.swift │ │ ├── IncrementalJSONResponseParsingInterceptor.swift │ │ ├── InputValue+Evaluation.swift │ │ ├── InterceptorProvider.swift │ │ ├── InterceptorRequestChain.swift │ │ ├── JSONConverter.swift │ │ ├── JSONRequest.swift │ │ ├── JSONResponseParsingInterceptor.swift │ │ ├── JSONSerialization+Sorting.swift │ │ ├── JSONSerializationFormat.swift │ │ ├── MaxRetryInterceptor.swift │ │ ├── MultipartFormData.swift │ │ ├── MultipartResponseDeferParser.swift │ │ ├── MultipartResponseParsingInterceptor.swift │ │ ├── MultipartResponseSubscriptionParser.swift │ │ ├── NetworkFetchInterceptor.swift │ │ ├── NetworkTransport.swift │ │ ├── NormalizedCache.swift │ │ ├── PathComponent.swift │ │ ├── PossiblyDeferred.swift │ │ ├── Record.swift │ │ ├── RecordSet.swift │ │ ├── RequestBodyCreator.swift │ │ ├── RequestChain.swift │ │ ├── RequestChainNetworkTransport.swift │ │ ├── RequestClientMetadata.swift │ │ ├── RequestContext.swift │ │ ├── Resources │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── ResponseCodeInterceptor.swift │ │ ├── ResponsePath.swift │ │ ├── SelectionSet+DictionaryIntializer.swift │ │ ├── SelectionSet+JSONInitializer.swift │ │ ├── TaskData.swift │ │ ├── URLSessionClient.swift │ │ └── UploadRequest.swift │ ├── ApolloAPI │ │ ├── AnyHashableConvertible.swift │ │ ├── CacheKeyInfo.swift │ │ ├── CacheReference.swift │ │ ├── DataDict.swift │ │ ├── Deferred.swift │ │ ├── Documentation.docc │ │ │ ├── Documentation.md │ │ │ ├── GraphQLEnum.md │ │ │ └── GraphQLNullable.md │ │ ├── FragmentProtocols.swift │ │ ├── GraphQLEnum.swift │ │ ├── GraphQLNullable.swift │ │ ├── GraphQLOperation.swift │ │ ├── InputValue.swift │ │ ├── JSON.swift │ │ ├── JSONDecodingError.swift │ │ ├── JSONStandardTypeConversions.swift │ │ ├── LocalCacheMutation.swift │ │ ├── ObjectData.swift │ │ ├── OutputTypeConvertible.swift │ │ ├── ParentType.swift │ │ ├── Resources │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── ScalarTypes.swift │ │ ├── SchemaConfiguration.swift │ │ ├── SchemaMetadata.swift │ │ ├── SchemaTypes │ │ │ ├── EnumType.swift │ │ │ ├── InputObject.swift │ │ │ ├── Interface.swift │ │ │ ├── Object.swift │ │ │ └── Union.swift │ │ ├── Selection+Conditions.swift │ │ ├── Selection.swift │ │ └── SelectionSet.swift │ ├── ApolloSQLite │ │ ├── ApolloSQLiteDatabase.swift │ │ ├── Documentation.docc │ │ │ └── Documentation.md │ │ ├── JournalMode.swift │ │ ├── Resources │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── SQLiteDatabase.swift │ │ ├── SQLiteNormalizedCache.swift │ │ └── SQLiteSerialization.swift │ ├── ApolloTestSupport │ │ ├── Field.swift │ │ ├── TestMock.swift │ │ └── TestMockSelectionSetMapper.swift │ └── ApolloWebSocket │ │ ├── DefaultImplementation │ │ ├── Compression.swift │ │ ├── SSLClientCertificate.swift │ │ ├── SSLSecurity.swift │ │ ├── WebSocket.swift │ │ └── WebSocketStream.swift │ │ ├── Documentation.docc │ │ └── Documentation.md │ │ ├── OperationMessage.swift │ │ ├── OperationMessageIdCreator.swift │ │ ├── Resources │ │ └── PrivacyInfo.xcprivacy │ │ ├── SplitNetworkTransport.swift │ │ ├── WebSocketClient.swift │ │ ├── WebSocketError.swift │ │ ├── WebSocketTask.swift │ │ └── WebSocketTransport.swift ├── Tests │ └── README.md ├── makefile └── scripts │ ├── cli-version-check.sh │ ├── download-cli.sh │ ├── get-version.sh │ └── version-constants.sh ├── docs ├── .gitattributes ├── .vscode │ └── settings.json ├── README.md ├── docc │ ├── Apollo.doccarchive │ │ ├── css │ │ │ ├── documentation-topic.0ad29f97.css │ │ │ ├── documentation-topic~topic~tutorials-overview.d890b221.css │ │ │ ├── index.5bae6993.css │ │ │ ├── topic.f6469788.css │ │ │ └── tutorials-overview.9b749a4d.css │ │ ├── data │ │ │ └── documentation │ │ │ │ ├── apollo.json │ │ │ │ ├── apollo │ │ │ │ ├── apolloapi.json │ │ │ │ ├── apolloapi │ │ │ │ │ ├── rootselectionset.json │ │ │ │ │ ├── rootselectionset │ │ │ │ │ │ ├── init(data:variables:)-5dodp.json │ │ │ │ │ │ └── init(data:variables:)-7xsfq.json │ │ │ │ │ ├── selection.json │ │ │ │ │ └── selection │ │ │ │ │ │ ├── field.json │ │ │ │ │ │ └── field │ │ │ │ │ │ └── cachekey(with:).json │ │ │ │ ├── apolloclient.json │ │ │ │ ├── apolloclient │ │ │ │ │ ├── apolloclienterror.json │ │ │ │ │ ├── apolloclienterror │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── nouploadtransport.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ │ ├── apolloclientprotocol-implementations.json │ │ │ │ │ ├── clearcache(callbackqueue:completion:).json │ │ │ │ │ ├── fetch(query:cachepolicy:context:queue:resulthandler:).json │ │ │ │ │ ├── fetch(query:cachepolicy:contextidentifier:context:queue:resulthandler:).json │ │ │ │ │ ├── init(networktransport:store:).json │ │ │ │ │ ├── init(url:).json │ │ │ │ │ ├── perform(mutation:publishresulttostore:context:queue:resulthandler:).json │ │ │ │ │ ├── perform(mutation:publishresulttostore:contextidentifier:context:queue:resulthandler:).json │ │ │ │ │ ├── store.json │ │ │ │ │ ├── subscribe(subscription:context:queue:resulthandler:).json │ │ │ │ │ ├── upload(operation:files:context:queue:resulthandler:).json │ │ │ │ │ ├── watch(query:cachepolicy:context:callbackqueue:resulthandler:).json │ │ │ │ │ └── watch(query:cachepolicy:refetchonfailedupdates:context:callbackqueue:resulthandler:).json │ │ │ │ ├── apolloclientprotocol.json │ │ │ │ ├── apolloclientprotocol │ │ │ │ │ ├── clearcache(callbackqueue:completion:).json │ │ │ │ │ ├── fetch(query:cachepolicy:context:queue:resulthandler:).json │ │ │ │ │ ├── fetch(query:cachepolicy:contextidentifier:context:queue:resulthandler:).json │ │ │ │ │ ├── perform(mutation:publishresulttostore:context:queue:resulthandler:).json │ │ │ │ │ ├── perform(mutation:publishresulttostore:contextidentifier:context:queue:resulthandler:).json │ │ │ │ │ ├── store.json │ │ │ │ │ ├── subscribe(subscription:context:queue:resulthandler:).json │ │ │ │ │ ├── upload(operation:files:context:queue:resulthandler:).json │ │ │ │ │ └── watch(query:cachepolicy:context:callbackqueue:resulthandler:).json │ │ │ │ ├── apolloerrorinterceptor.json │ │ │ │ ├── apolloerrorinterceptor │ │ │ │ │ └── handleerrorasync(error:chain:request:response:completion:).json │ │ │ │ ├── apollointerceptor.json │ │ │ │ ├── apollointerceptor │ │ │ │ │ ├── id.json │ │ │ │ │ └── interceptasync(chain:request:response:completion:).json │ │ │ │ ├── apollorequestbodycreator.json │ │ │ │ ├── apollorequestbodycreator │ │ │ │ │ ├── init().json │ │ │ │ │ ├── requestbody(for:sendquerydocument:autopersistquery:).json │ │ │ │ │ └── requestbodycreator-implementations.json │ │ │ │ ├── apollostore.json │ │ │ │ ├── apollostore │ │ │ │ │ ├── clearcache(callbackqueue:completion:).json │ │ │ │ │ ├── error.json │ │ │ │ │ ├── error │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ └── notwithinreadtransaction.json │ │ │ │ │ ├── init(cache:).json │ │ │ │ │ ├── load(_:callbackqueue:resulthandler:).json │ │ │ │ │ ├── publish(records:identifier:callbackqueue:completion:).json │ │ │ │ │ ├── readtransaction.json │ │ │ │ │ ├── readtransaction │ │ │ │ │ │ ├── read(query:).json │ │ │ │ │ │ └── readobject(oftype:withkey:variables:).json │ │ │ │ │ ├── readwritetransaction.json │ │ │ │ │ ├── readwritetransaction │ │ │ │ │ │ ├── removeobject(for:).json │ │ │ │ │ │ ├── removeobjects(matching:).json │ │ │ │ │ │ ├── update(_:_:).json │ │ │ │ │ │ ├── updateobject(oftype:withkey:variables:_:).json │ │ │ │ │ │ ├── write(data:for:)-9mzaz.json │ │ │ │ │ │ ├── write(data:for:)-y0jm.json │ │ │ │ │ │ └── write(selectionset:withkey:variables:).json │ │ │ │ │ ├── subscribe(_:).json │ │ │ │ │ ├── unsubscribe(_:).json │ │ │ │ │ ├── withinreadtransaction(_:callbackqueue:completion:).json │ │ │ │ │ └── withinreadwritetransaction(_:callbackqueue:completion:).json │ │ │ │ ├── apollostoresubscriber.json │ │ │ │ ├── apollostoresubscriber │ │ │ │ │ └── store(_:didchangekeys:contextidentifier:).json │ │ │ │ ├── atomic.json │ │ │ │ ├── atomic │ │ │ │ │ ├── increment().json │ │ │ │ │ ├── init(wrappedvalue:).json │ │ │ │ │ ├── mutate(block:).json │ │ │ │ │ ├── projectedvalue.json │ │ │ │ │ └── wrappedvalue.json │ │ │ │ ├── automaticpersistedqueryinterceptor.json │ │ │ │ ├── automaticpersistedqueryinterceptor │ │ │ │ │ ├── apqerror.json │ │ │ │ │ ├── apqerror │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── noparsedresponse.json │ │ │ │ │ │ ├── persistedquerynotfoundforpersistedonlyquery(operationname:).json │ │ │ │ │ │ ├── persistedqueryretryfailed(operationname:).json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init().json │ │ │ │ │ └── interceptasync(chain:request:response:completion:).json │ │ │ │ ├── cachekey.json │ │ │ │ ├── cachepolicy.json │ │ │ │ ├── cachepolicy │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── default.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── fetchignoringcachecompletely.json │ │ │ │ │ ├── fetchignoringcachedata.json │ │ │ │ │ ├── returncachedataandfetch.json │ │ │ │ │ ├── returncachedatadontfetch.json │ │ │ │ │ └── returncachedataelsefetch.json │ │ │ │ ├── cachereadinterceptor.json │ │ │ │ ├── cachereadinterceptor │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init(store:).json │ │ │ │ │ └── interceptasync(chain:request:response:completion:).json │ │ │ │ ├── cachewriteinterceptor.json │ │ │ │ ├── cachewriteinterceptor │ │ │ │ │ ├── cachewriteerror.json │ │ │ │ │ ├── cachewriteerror │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── noresponsetoparse.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init(store:).json │ │ │ │ │ ├── interceptasync(chain:request:response:completion:).json │ │ │ │ │ └── store.json │ │ │ │ ├── cancellable.json │ │ │ │ ├── cancellable │ │ │ │ │ └── cancel().json │ │ │ │ ├── constants.json │ │ │ │ ├── defaultinterceptorprovider.json │ │ │ │ ├── defaultinterceptorprovider │ │ │ │ │ ├── additionalerrorinterceptor(for:)-5e08v.json │ │ │ │ │ ├── additionalerrorinterceptor(for:)-5ff01.json │ │ │ │ │ ├── init(client:shouldinvalidateclientondeinit:store:).json │ │ │ │ │ ├── interceptorprovider-implementations.json │ │ │ │ │ └── interceptors(for:).json │ │ │ │ ├── didchangekeysfunc.json │ │ │ │ ├── emptycancellable.json │ │ │ │ ├── emptycancellable │ │ │ │ │ ├── cancel().json │ │ │ │ │ └── init().json │ │ │ │ ├── graphqlerror.json │ │ │ │ ├── graphqlerror │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── customstringconvertible-implementations.json │ │ │ │ │ ├── description.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── extensions.json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── init(_:).json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ ├── location.json │ │ │ │ │ ├── location │ │ │ │ │ │ ├── column.json │ │ │ │ │ │ └── line.json │ │ │ │ │ ├── locations.json │ │ │ │ │ ├── message.json │ │ │ │ │ ├── path.json │ │ │ │ │ ├── pathentry.json │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ └── subscript(_:).json │ │ │ │ ├── graphqlexecutionerror.json │ │ │ │ ├── graphqlexecutionerror │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ ├── pathstring.json │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ └── underlying.json │ │ │ │ ├── graphqlfile.json │ │ │ │ ├── graphqlfile │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── contentlength.json │ │ │ │ │ ├── data.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── fieldname.json │ │ │ │ │ ├── fileurl.json │ │ │ │ │ ├── generateinputstream().json │ │ │ │ │ ├── graphqlfileerror.json │ │ │ │ │ ├── graphqlfileerror │ │ │ │ │ │ ├── couldnotcreateinputstream.json │ │ │ │ │ │ ├── couldnotgetfilesize(fileurl:).json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ │ ├── init(fieldname:originalname:mimetype:data:).json │ │ │ │ │ ├── init(fieldname:originalname:mimetype:fileurl:).json │ │ │ │ │ ├── mimetype.json │ │ │ │ │ ├── octetstreammimetype.json │ │ │ │ │ └── originalname.json │ │ │ │ ├── graphqlgettransformer.json │ │ │ │ ├── graphqlgettransformer │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── creategeturl().json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ └── init(body:url:).json │ │ │ │ ├── graphqlhttprequesterror.json │ │ │ │ ├── graphqlhttprequesterror │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ ├── serializedbodymessageerror.json │ │ │ │ │ └── serializedqueryparamsmessageerror.json │ │ │ │ ├── graphqlquerywatcher.json │ │ │ │ ├── graphqlquerywatcher │ │ │ │ │ ├── cancel().json │ │ │ │ │ ├── init(client:query:refetchonfailedupdates:context:callbackqueue:resulthandler:).json │ │ │ │ │ ├── query.json │ │ │ │ │ ├── refetch(cachepolicy:).json │ │ │ │ │ ├── refetchonfailedupdates.json │ │ │ │ │ └── store(_:didchangekeys:contextidentifier:).json │ │ │ │ ├── graphqlresponse.json │ │ │ │ ├── graphqlresponse │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ ├── init(operation:body:).json │ │ │ │ │ ├── parseresult().json │ │ │ │ │ ├── parseresult(withcachepolicy:).json │ │ │ │ │ └── parseresultfast().json │ │ │ │ ├── graphqlresult.json │ │ │ │ ├── graphqlresult │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── asjsondictionary().json │ │ │ │ │ ├── data.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── errors.json │ │ │ │ │ ├── extensions.json │ │ │ │ │ ├── init(data:extensions:errors:source:dependentkeys:).json │ │ │ │ │ ├── source-swift.enum.json │ │ │ │ │ ├── source-swift.enum │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── cache.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ └── server.json │ │ │ │ │ └── source-swift.property.json │ │ │ │ ├── graphqlresulthandler.json │ │ │ │ ├── httprequest.json │ │ │ │ ├── httprequest │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── addheader(name:value:).json │ │ │ │ │ ├── additionalheaders.json │ │ │ │ │ ├── cachepolicy.json │ │ │ │ │ ├── context.json │ │ │ │ │ ├── contextidentifier.json │ │ │ │ │ ├── customdebugstringconvertible-implementations.json │ │ │ │ │ ├── debugdescription.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── graphqlendpoint.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── init(graphqlendpoint:operation:contextidentifier:contenttype:clientname:clientversion:additionalheaders:cachepolicy:context:).json │ │ │ │ │ ├── operation.json │ │ │ │ │ ├── tourlrequest().json │ │ │ │ │ └── updatecontenttype(to:).json │ │ │ │ ├── httpresponse.json │ │ │ │ ├── httpresponse │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── cacherecords.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ ├── httpresponse.json │ │ │ │ │ ├── init(response:rawdata:parsedresponse:).json │ │ │ │ │ ├── legacyresponse.json │ │ │ │ │ ├── parsedresponse.json │ │ │ │ │ └── rawdata.json │ │ │ │ ├── incrementaljsonresponseparsinginterceptor.json │ │ │ │ ├── incrementaljsonresponseparsinginterceptor │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init().json │ │ │ │ │ ├── interceptasync(chain:request:response:completion:).json │ │ │ │ │ ├── parsingerror.json │ │ │ │ │ └── parsingerror │ │ │ │ │ │ ├── couldnotparseincrementaljson(json:).json │ │ │ │ │ │ ├── couldnotparsetojson(data:).json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── mismatchedcurrentresulttype.json │ │ │ │ │ │ ├── noresponsetoparse.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── inmemorynormalizedcache.json │ │ │ │ ├── inmemorynormalizedcache │ │ │ │ │ ├── clear().json │ │ │ │ │ ├── init(records:).json │ │ │ │ │ ├── loadrecords(forkeys:).json │ │ │ │ │ ├── merge(records:).json │ │ │ │ │ ├── removerecord(for:).json │ │ │ │ │ └── removerecords(matching:).json │ │ │ │ ├── interceptorprovider.json │ │ │ │ ├── interceptorprovider │ │ │ │ │ ├── additionalerrorinterceptor(for:)-4nida.json │ │ │ │ │ ├── additionalerrorinterceptor(for:)-5p7fr.json │ │ │ │ │ └── interceptors(for:).json │ │ │ │ ├── interceptorrequestchain.json │ │ │ │ ├── interceptorrequestchain │ │ │ │ │ ├── additionalerrorhandler.json │ │ │ │ │ ├── cancel().json │ │ │ │ │ ├── chainerror.json │ │ │ │ │ ├── chainerror │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── invalidindex(chain:index:).json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── nointerceptors.json │ │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ │ └── unknowninterceptor(id:).json │ │ │ │ │ ├── handleerrorasync(_:request:response:completion:).json │ │ │ │ │ ├── init(interceptors:callbackqueue:).json │ │ │ │ │ ├── iscancelled.json │ │ │ │ │ ├── kickoff(request:completion:).json │ │ │ │ │ ├── proceedasync(request:response:completion:).json │ │ │ │ │ ├── proceedasync(request:response:interceptor:completion:).json │ │ │ │ │ ├── retry(request:completion:).json │ │ │ │ │ └── returnvalueasync(for:value:completion:).json │ │ │ │ ├── jsonconverter.json │ │ │ │ ├── jsonconverter │ │ │ │ │ ├── convert(_:)-29ctk.json │ │ │ │ │ ├── convert(_:)-4jdtv.json │ │ │ │ │ └── convert(_:)-8r01k.json │ │ │ │ ├── jsonrequest.json │ │ │ │ ├── jsonrequest │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── autopersistqueries.json │ │ │ │ │ ├── body.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── init(operation:graphqlendpoint:contextidentifier:clientname:clientversion:additionalheaders:cachepolicy:context:autopersistqueries:usegetforqueries:usegetforpersistedqueryretry:requestbodycreator:).json │ │ │ │ │ ├── ispersistedqueryretry.json │ │ │ │ │ ├── requestbodycreator.json │ │ │ │ │ ├── serializationformat.json │ │ │ │ │ ├── tourlrequest().json │ │ │ │ │ ├── usegetforpersistedqueryretry.json │ │ │ │ │ └── usegetforqueries.json │ │ │ │ ├── jsonresponseparsinginterceptor.json │ │ │ │ ├── jsonresponseparsinginterceptor │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init().json │ │ │ │ │ ├── interceptasync(chain:request:response:completion:).json │ │ │ │ │ ├── jsonresponseparsingerror.json │ │ │ │ │ └── jsonresponseparsingerror │ │ │ │ │ │ ├── couldnotparsetojson(data:).json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── noresponsetoparse.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── jsonserializationformat.json │ │ │ │ ├── jsonserializationformat │ │ │ │ │ ├── deserialize(data:).json │ │ │ │ │ ├── serialize(value:)-5ftc9.json │ │ │ │ │ └── serialize(value:)-6eeoc.json │ │ │ │ ├── maxretryinterceptor.json │ │ │ │ ├── maxretryinterceptor │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init(maxretriesallowed:).json │ │ │ │ │ ├── interceptasync(chain:request:response:completion:).json │ │ │ │ │ ├── retryerror.json │ │ │ │ │ └── retryerror │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── hitmaxretrycount(count:operationname:).json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── multipartformdata.json │ │ │ │ ├── multipartformdata │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── appendpart(data:name:contenttype:filename:).json │ │ │ │ │ ├── appendpart(inputstream:contentlength:name:contenttype:filename:).json │ │ │ │ │ ├── appendpart(string:name:).json │ │ │ │ │ ├── boundary.json │ │ │ │ │ ├── encode().json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ ├── init().json │ │ │ │ │ └── init(boundary:).json │ │ │ │ ├── multipartresponseparsinginterceptor.json │ │ │ │ ├── multipartresponseparsinginterceptor │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init().json │ │ │ │ │ ├── interceptasync(chain:request:response:completion:).json │ │ │ │ │ ├── parsingerror.json │ │ │ │ │ └── parsingerror │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── cannotparseresponse.json │ │ │ │ │ │ ├── cannotparseresponsedata.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── invalidmultipartprotocol.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── missingmultipartboundary.json │ │ │ │ │ │ ├── noresponsetoparse.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── networkfetchinterceptor.json │ │ │ │ ├── networkfetchinterceptor │ │ │ │ │ ├── cancel().json │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init(client:).json │ │ │ │ │ └── interceptasync(chain:request:response:completion:).json │ │ │ │ ├── networktransport.json │ │ │ │ ├── networktransport │ │ │ │ │ ├── addapolloclientheaders(to:).json │ │ │ │ │ ├── clientname-3npzv.json │ │ │ │ │ ├── clientname-689z0.json │ │ │ │ │ ├── clientversion-8yya.json │ │ │ │ │ ├── clientversion-9p2ue.json │ │ │ │ │ ├── defaultclientname.json │ │ │ │ │ ├── defaultclientversion.json │ │ │ │ │ ├── headerfieldnameapolloclientname.json │ │ │ │ │ ├── headerfieldnameapolloclientversion.json │ │ │ │ │ └── send(operation:cachepolicy:contextidentifier:context:callbackqueue:completionhandler:).json │ │ │ │ ├── normalizedcache.json │ │ │ │ ├── normalizedcache │ │ │ │ │ ├── clear().json │ │ │ │ │ ├── loadrecords(forkeys:).json │ │ │ │ │ ├── merge(records:).json │ │ │ │ │ ├── removerecord(for:).json │ │ │ │ │ └── removerecords(matching:).json │ │ │ │ ├── pathcomponent.json │ │ │ │ ├── pathcomponent │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── field(_:).json │ │ │ │ │ └── index(_:).json │ │ │ │ ├── record.json │ │ │ │ ├── record │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── customstringconvertible-implementations.json │ │ │ │ │ ├── description.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── fields-swift.property.json │ │ │ │ │ ├── fields-swift.typealias.json │ │ │ │ │ ├── init(key:_:).json │ │ │ │ │ ├── key.json │ │ │ │ │ ├── subscript(_:).json │ │ │ │ │ └── value.json │ │ │ │ ├── recordset.json │ │ │ │ ├── recordset │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── clear().json │ │ │ │ │ ├── customdebugstringconvertible-implementations.json │ │ │ │ │ ├── customplaygrounddisplayconvertible-implementations.json │ │ │ │ │ ├── customstringconvertible-implementations.json │ │ │ │ │ ├── debugdescription.json │ │ │ │ │ ├── description.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ │ │ ├── init(dictionaryliteral:).json │ │ │ │ │ ├── init(records:).json │ │ │ │ │ ├── insert(_:).json │ │ │ │ │ ├── insert(contentsof:).json │ │ │ │ │ ├── isempty.json │ │ │ │ │ ├── keys.json │ │ │ │ │ ├── merge(record:).json │ │ │ │ │ ├── merge(records:).json │ │ │ │ │ ├── playgrounddescription.json │ │ │ │ │ ├── removerecord(for:).json │ │ │ │ │ ├── removerecords(matching:).json │ │ │ │ │ ├── storage.json │ │ │ │ │ └── subscript(_:).json │ │ │ │ ├── requestbodycreator.json │ │ │ │ ├── requestbodycreator │ │ │ │ │ ├── requestbody(for:sendquerydocument:autopersistquery:)-1ddq1.json │ │ │ │ │ └── requestbody(for:sendquerydocument:autopersistquery:)-79e0u.json │ │ │ │ ├── requestchain.json │ │ │ │ ├── requestchain │ │ │ │ │ ├── cancel().json │ │ │ │ │ ├── handleerrorasync(_:request:response:completion:).json │ │ │ │ │ ├── iscancelled.json │ │ │ │ │ ├── kickoff(request:completion:).json │ │ │ │ │ ├── proceedasync(request:response:completion:).json │ │ │ │ │ ├── proceedasync(request:response:interceptor:completion:).json │ │ │ │ │ ├── retry(request:completion:).json │ │ │ │ │ └── returnvalueasync(for:value:completion:).json │ │ │ │ ├── requestchainnetworktransport.json │ │ │ │ ├── requestchainnetworktransport │ │ │ │ │ ├── addapolloclientheaders(to:).json │ │ │ │ │ ├── additionalheaders.json │ │ │ │ │ ├── autopersistqueries.json │ │ │ │ │ ├── clientname.json │ │ │ │ │ ├── clientversion.json │ │ │ │ │ ├── constructrequest(for:cachepolicy:contextidentifier:context:).json │ │ │ │ │ ├── constructuploadrequest(for:with:context:manualboundary:).json │ │ │ │ │ ├── defaultclientname.json │ │ │ │ │ ├── defaultclientversion.json │ │ │ │ │ ├── endpointurl.json │ │ │ │ │ ├── headerfieldnameapolloclientname.json │ │ │ │ │ ├── headerfieldnameapolloclientversion.json │ │ │ │ │ ├── init(interceptorprovider:endpointurl:additionalheaders:autopersistqueries:requestbodycreator:usegetforqueries:usegetforpersistedqueryretry:).json │ │ │ │ │ ├── networktransport-implementations.json │ │ │ │ │ ├── requestbodycreator.json │ │ │ │ │ ├── send(operation:cachepolicy:contextidentifier:context:callbackqueue:completionhandler:).json │ │ │ │ │ ├── upload(operation:files:context:callbackqueue:completionhandler:).json │ │ │ │ │ ├── uploadingnetworktransport-implementations.json │ │ │ │ │ ├── usegetforpersistedqueryretry.json │ │ │ │ │ └── usegetforqueries.json │ │ │ │ ├── requestcontext.json │ │ │ │ ├── requestcontexttimeoutconfigurable.json │ │ │ │ ├── requestcontexttimeoutconfigurable │ │ │ │ │ └── requesttimeout.json │ │ │ │ ├── responsecodeinterceptor.json │ │ │ │ ├── responsecodeinterceptor │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init().json │ │ │ │ │ ├── interceptasync(chain:request:response:completion:).json │ │ │ │ │ ├── responsecodeerror.json │ │ │ │ │ └── responsecodeerror │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── graphqlerror.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── invalidresponsecode(response:rawdata:).json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── responsepath.json │ │ │ │ ├── responsepath │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── +(_:_:)-33jrx.json │ │ │ │ │ ├── +(_:_:)-4k3co.json │ │ │ │ │ ├── +(_:_:)-4qdcw.json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── append(_:).json │ │ │ │ │ ├── appending(_:).json │ │ │ │ │ ├── customstringconvertible-implementations.json │ │ │ │ │ ├── description.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ ├── init(_:).json │ │ │ │ │ ├── init(arrayliteral:).json │ │ │ │ │ ├── isempty.json │ │ │ │ │ ├── joined.json │ │ │ │ │ ├── key.json │ │ │ │ │ └── toarray().json │ │ │ │ ├── rootselectionsetinitializeerror.json │ │ │ │ ├── rootselectionsetinitializeerror │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── hasnonhashablevalue.json │ │ │ │ │ └── localizeddescription.json │ │ │ │ ├── swift.json │ │ │ │ ├── swift │ │ │ │ │ ├── dictionary.json │ │ │ │ │ └── dictionary │ │ │ │ │ │ └── +=(_:_:).json │ │ │ │ ├── taskdata.json │ │ │ │ ├── taskdata │ │ │ │ │ ├── completionblock.json │ │ │ │ │ └── rawcompletion.json │ │ │ │ ├── unzip(_:)-1e6mu.json │ │ │ │ ├── unzip(_:)-33e77.json │ │ │ │ ├── uploadingnetworktransport.json │ │ │ │ ├── uploadingnetworktransport │ │ │ │ │ └── upload(operation:files:context:callbackqueue:completionhandler:).json │ │ │ │ ├── uploadrequest.json │ │ │ │ ├── uploadrequest │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── files.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── init(graphqlendpoint:operation:clientname:clientversion:additionalheaders:files:manualboundary:context:requestbodycreator:).json │ │ │ │ │ ├── manualboundary.json │ │ │ │ │ ├── requestbodycreator.json │ │ │ │ │ ├── requestmultipartformdata().json │ │ │ │ │ ├── serializationformat.json │ │ │ │ │ └── tourlrequest().json │ │ │ │ ├── urlsessionclient.json │ │ │ │ └── urlsessionclient │ │ │ │ │ ├── cancel(task:).json │ │ │ │ │ ├── clear(task:).json │ │ │ │ │ ├── clearalltasks().json │ │ │ │ │ ├── completion.json │ │ │ │ │ ├── init(sessionconfiguration:callbackqueue:sessiondescription:).json │ │ │ │ │ ├── invalidate().json │ │ │ │ │ ├── rawcompletion.json │ │ │ │ │ ├── sendrequest(_:rawtaskcompletionhandler:completion:).json │ │ │ │ │ ├── sendrequest(_:taskdescription:rawtaskcompletionhandler:completion:).json │ │ │ │ │ ├── session.json │ │ │ │ │ ├── urlsession(_:datatask:didbecome:)-17qvj.json │ │ │ │ │ ├── urlsession(_:datatask:didbecome:)-1gjp0.json │ │ │ │ │ ├── urlsession(_:datatask:didreceive:).json │ │ │ │ │ ├── urlsession(_:datatask:didreceive:completionhandler:).json │ │ │ │ │ ├── urlsession(_:datatask:willcacheresponse:completionhandler:).json │ │ │ │ │ ├── urlsession(_:didbecomeinvalidwitherror:).json │ │ │ │ │ ├── urlsession(_:didreceive:completionhandler:).json │ │ │ │ │ ├── urlsession(_:task:didcompletewitherror:).json │ │ │ │ │ ├── urlsession(_:task:didfinishcollecting:).json │ │ │ │ │ ├── urlsession(_:task:didreceive:completionhandler:).json │ │ │ │ │ ├── urlsession(_:task:didsendbodydata:totalbytessent:totalbytesexpectedtosend:).json │ │ │ │ │ ├── urlsession(_:task:neednewbodystream:).json │ │ │ │ │ ├── urlsession(_:task:willbegindelayedrequest:completionhandler:).json │ │ │ │ │ ├── urlsession(_:task:willperformhttpredirection:newrequest:completionhandler:).json │ │ │ │ │ ├── urlsession(_:taskiswaitingforconnectivity:).json │ │ │ │ │ ├── urlsessionclienterror.json │ │ │ │ │ └── urlsessionclienterror │ │ │ │ │ ├── cannotparseboundarydata.json │ │ │ │ │ ├── dataforrequestnotfound(request:).json │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ ├── missingmultipartboundary.json │ │ │ │ │ ├── networkerror(data:response:underlying:).json │ │ │ │ │ ├── nohttpresponse(request:).json │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ ├── sessionbecameinvalidwithoutunderlyingerror.json │ │ │ │ │ └── sessioninvalidated.json │ │ │ │ ├── apolloapi.json │ │ │ │ ├── apolloapi │ │ │ │ ├── !=(_:_:).json │ │ │ │ ├── ==(_:_:).json │ │ │ │ ├── __(_:_:).json │ │ │ │ ├── anyhashableconvertible.json │ │ │ │ ├── anyscalartype.json │ │ │ │ ├── cachekeyinfo.json │ │ │ │ ├── cachekeyinfo │ │ │ │ │ ├── id.json │ │ │ │ │ ├── init(id:uniquekeygroup:).json │ │ │ │ │ ├── init(jsonvalue:uniquekeygroup:).json │ │ │ │ │ └── uniquekeygroup.json │ │ │ │ ├── cachereference.json │ │ │ │ ├── cachereference │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── customstringconvertible-implementations.json │ │ │ │ │ ├── description.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── init(_:).json │ │ │ │ │ ├── key.json │ │ │ │ │ ├── rootcachereference(for:).json │ │ │ │ │ ├── rootmutation.json │ │ │ │ │ ├── rootquery.json │ │ │ │ │ └── rootsubscription.json │ │ │ │ ├── compositeinlinefragment.json │ │ │ │ ├── compositeselectionset.json │ │ │ │ ├── customscalartype.json │ │ │ │ ├── datadict.json │ │ │ │ ├── datadict │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── init(data:fulfilledfragments:deferredfragments:).json │ │ │ │ │ ├── subscript(_:)-5tqti.json │ │ │ │ │ └── subscript(_:)-7aefb.json │ │ │ │ ├── deferrable.json │ │ │ │ ├── deferred.json │ │ │ │ ├── deferred │ │ │ │ │ ├── projectedvalue.json │ │ │ │ │ ├── state-swift.enum.json │ │ │ │ │ ├── state-swift.enum │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── fulfilled(_:).json │ │ │ │ │ │ ├── notexecuted.json │ │ │ │ │ │ └── pending.json │ │ │ │ │ ├── state-swift.property.json │ │ │ │ │ └── wrappedvalue.json │ │ │ │ ├── deferredfragmentidentifier.json │ │ │ │ ├── deferredfragmentidentifier │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ └── init(label:fieldpath:).json │ │ │ │ ├── documenttype.json │ │ │ │ ├── documenttype │ │ │ │ │ ├── automaticallypersisted(operationidentifier:definition:).json │ │ │ │ │ ├── notpersisted(definition:).json │ │ │ │ │ └── persistedoperationsonly(operationidentifier:).json │ │ │ │ ├── enumtype.json │ │ │ │ ├── fragment.json │ │ │ │ ├── fragment │ │ │ │ │ ├── fragmentdefinition-3rmj6.json │ │ │ │ │ └── fragmentdefinition-4x2cs.json │ │ │ │ ├── fragmentcontainer.json │ │ │ │ ├── graphqlenum.json │ │ │ │ ├── graphqlenum │ │ │ │ │ ├── !=(_:_:)-4co00.json │ │ │ │ │ ├── !=(_:_:)-9dudu.json │ │ │ │ │ ├── ==(_:_:)-88en.json │ │ │ │ │ ├── ==(_:_:)-n7qo.json │ │ │ │ │ ├── allcases.json │ │ │ │ │ ├── case(_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ ├── init(_:)-41gki.json │ │ │ │ │ ├── init(_:)-82xe0.json │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ ├── rawrepresentable-implementations.json │ │ │ │ │ ├── rawvalue-swift.property.json │ │ │ │ │ ├── rawvalue-swift.typealias.json │ │ │ │ │ ├── unknown(_:).json │ │ │ │ │ ├── value.json │ │ │ │ │ └── ~=(_:_:).json │ │ │ │ ├── graphqlmutation.json │ │ │ │ ├── graphqlnullable.json │ │ │ │ ├── graphqlnullable │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── expressiblebyarrayliteral-implementations.json │ │ │ │ │ ├── expressiblebybooleanliteral-implementations.json │ │ │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ │ │ ├── expressiblebyextendedgraphemeclusterliteral-implementations.json │ │ │ │ │ ├── expressiblebyfloatliteral-implementations.json │ │ │ │ │ ├── expressiblebyintegerliteral-implementations.json │ │ │ │ │ ├── expressiblebynilliteral-implementations.json │ │ │ │ │ ├── expressiblebystringliteral-implementations.json │ │ │ │ │ ├── expressiblebyunicodescalarliteral-implementations.json │ │ │ │ │ ├── init(_:)-3syxd.json │ │ │ │ │ ├── init(_:)-7pg3j.json │ │ │ │ │ ├── init(arrayliteral:).json │ │ │ │ │ ├── init(booleanliteral:).json │ │ │ │ │ ├── init(dictionaryliteral:).json │ │ │ │ │ ├── init(extendedgraphemeclusterliteral:).json │ │ │ │ │ ├── init(floatliteral:).json │ │ │ │ │ ├── init(integerliteral:).json │ │ │ │ │ ├── init(nilliteral:).json │ │ │ │ │ ├── init(stringliteral:).json │ │ │ │ │ ├── init(unicodescalarliteral:).json │ │ │ │ │ ├── none.json │ │ │ │ │ ├── null.json │ │ │ │ │ ├── some(_:).json │ │ │ │ │ ├── subscript(dynamicmember:).json │ │ │ │ │ └── unwrapped.json │ │ │ │ ├── graphqloperation.json │ │ │ │ ├── graphqloperation │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── data.json │ │ │ │ │ ├── deferredfragments-51xzf.json │ │ │ │ │ ├── deferredfragments-6928x.json │ │ │ │ │ ├── deferredselectionsettype(for:withlabel:atfieldpath:).json │ │ │ │ │ ├── definition.json │ │ │ │ │ ├── document.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hasdeferredfragments.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ ├── operationdocument.json │ │ │ │ │ ├── operationidentifier.json │ │ │ │ │ ├── operationname.json │ │ │ │ │ ├── operationtype-14lsi.json │ │ │ │ │ ├── operationtype-370r3.json │ │ │ │ │ ├── operationtype-5e63x.json │ │ │ │ │ ├── operationtype-90ybj.json │ │ │ │ │ └── variables.json │ │ │ │ ├── graphqloperationtype.json │ │ │ │ ├── graphqloperationtype │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── mutation.json │ │ │ │ │ ├── query.json │ │ │ │ │ └── subscription.json │ │ │ │ ├── graphqloperationvariablevalue.json │ │ │ │ ├── graphqlquery.json │ │ │ │ ├── graphqlsubscription.json │ │ │ │ ├── inlinefragment.json │ │ │ │ ├── inlinefragment │ │ │ │ │ ├── asrootentitytype.json │ │ │ │ │ └── rootentitytype.json │ │ │ │ ├── inputdict.json │ │ │ │ ├── inputdict │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── init(_:).json │ │ │ │ │ ├── subscript(_:)-2fzfl.json │ │ │ │ │ └── subscript(_:)-vs7u.json │ │ │ │ ├── inputobject.json │ │ │ │ ├── inputobject │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ └── jsonencodablevalue.json │ │ │ │ ├── inputvalue.json │ │ │ │ ├── inputvalue │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── expressiblebyarrayliteral-implementations.json │ │ │ │ │ ├── expressiblebybooleanliteral-implementations.json │ │ │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ │ │ ├── expressiblebyextendedgraphemeclusterliteral-implementations.json │ │ │ │ │ ├── expressiblebyfloatliteral-implementations.json │ │ │ │ │ ├── expressiblebyintegerliteral-implementations.json │ │ │ │ │ ├── expressiblebystringliteral-implementations.json │ │ │ │ │ ├── expressiblebyunicodescalarliteral-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ ├── init(arrayliteral:).json │ │ │ │ │ ├── init(booleanliteral:).json │ │ │ │ │ ├── init(dictionaryliteral:).json │ │ │ │ │ ├── init(extendedgraphemeclusterliteral:).json │ │ │ │ │ ├── init(floatliteral:).json │ │ │ │ │ ├── init(integerliteral:).json │ │ │ │ │ ├── init(stringliteral:).json │ │ │ │ │ ├── init(unicodescalarliteral:).json │ │ │ │ │ ├── list(_:).json │ │ │ │ │ ├── null.json │ │ │ │ │ ├── object(_:).json │ │ │ │ │ ├── scalar(_:).json │ │ │ │ │ └── variable(_:).json │ │ │ │ ├── interface.json │ │ │ │ ├── interface │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── canbeconverted(from:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── implementingobjects.json │ │ │ │ │ ├── init(name:keyfields:implementingobjects:).json │ │ │ │ │ ├── keyfields.json │ │ │ │ │ ├── name.json │ │ │ │ │ └── parenttype-implementations.json │ │ │ │ ├── jsondecodable.json │ │ │ │ ├── jsondecodingerror.json │ │ │ │ ├── jsondecodingerror │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── couldnotconvert(value:to:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ ├── missingvalue.json │ │ │ │ │ ├── nullvalue.json │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ └── wrongtype.json │ │ │ │ ├── jsonencodable.json │ │ │ │ ├── jsonencodabledictionary.json │ │ │ │ ├── jsonobject.json │ │ │ │ ├── jsonvalue.json │ │ │ │ ├── listdata.json │ │ │ │ ├── listdata │ │ │ │ │ ├── subscript(_:)-1flo.json │ │ │ │ │ ├── subscript(_:)-1q130.json │ │ │ │ │ └── subscript(_:)-9jgjw.json │ │ │ │ ├── localcachemutation.json │ │ │ │ ├── localcachemutation │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── data.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ └── operationtype.json │ │ │ │ ├── mutablerootselectionset.json │ │ │ │ ├── mutablerootselectionset │ │ │ │ │ └── mutateiffulfilled(_:_:).json │ │ │ │ ├── mutableselectionset.json │ │ │ │ ├── mutableselectionset │ │ │ │ │ ├── fragments.json │ │ │ │ │ └── mutateiffulfilled(_:_:).json │ │ │ │ ├── nofragments.json │ │ │ │ ├── object.json │ │ │ │ ├── object │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── canbeconverted(from:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── implementedinterfaces.json │ │ │ │ │ ├── implements(_:).json │ │ │ │ │ ├── init(typename:implementedinterfaces:keyfields:).json │ │ │ │ │ ├── keyfields.json │ │ │ │ │ ├── parenttype-implementations.json │ │ │ │ │ └── typename.json │ │ │ │ ├── objectdata.json │ │ │ │ ├── objectdata │ │ │ │ │ ├── subscript(_:)-2f9g7.json │ │ │ │ │ ├── subscript(_:)-6intc.json │ │ │ │ │ └── subscript(_:)-8g44b.json │ │ │ │ ├── oneofinputobject.json │ │ │ │ ├── operationdefinition.json │ │ │ │ ├── operationdefinition │ │ │ │ │ ├── init(_:fragments:).json │ │ │ │ │ └── querydocument.json │ │ │ │ ├── operationdocument.json │ │ │ │ ├── operationdocument │ │ │ │ │ ├── definition.json │ │ │ │ │ ├── init(operationidentifier:definition:).json │ │ │ │ │ └── operationidentifier.json │ │ │ │ ├── outputtypeconvertible.json │ │ │ │ ├── parenttype.json │ │ │ │ ├── parenttype │ │ │ │ │ └── canbeconverted(from:).json │ │ │ │ ├── rootselectionset.json │ │ │ │ ├── scalartype.json │ │ │ │ ├── schemaconfiguration.json │ │ │ │ ├── schemaconfiguration │ │ │ │ │ └── cachekeyinfo(for:object:).json │ │ │ │ ├── schemametadata.json │ │ │ │ ├── schemametadata │ │ │ │ │ ├── cachekey(for:inferredtoimplementinterface:).json │ │ │ │ │ ├── configuration.json │ │ │ │ │ ├── graphqltype(for:).json │ │ │ │ │ └── objecttype(fortypename:).json │ │ │ │ ├── selection.json │ │ │ │ ├── selection │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── condition.json │ │ │ │ │ ├── condition │ │ │ │ │ │ ├── !(_:).json │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── &&(_:_:)-21jgl.json │ │ │ │ │ │ ├── &&(_:_:)-jx5b.json │ │ │ │ │ │ ├── __(_:_:)-752lr.json │ │ │ │ │ │ ├── __(_:_:)-7m77y.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── evaluate(with:).json │ │ │ │ │ │ ├── expressiblebyextendedgraphemeclusterliteral-implementations.json │ │ │ │ │ │ ├── expressiblebyunicodescalarliteral-implementations.json │ │ │ │ │ │ ├── if(_:)-4vwki.json │ │ │ │ │ │ ├── if(_:)-tr8e.json │ │ │ │ │ │ ├── init(booleanliteral:).json │ │ │ │ │ │ ├── init(extendedgraphemeclusterliteral:).json │ │ │ │ │ │ ├── init(stringliteral:).json │ │ │ │ │ │ ├── init(unicodescalarliteral:).json │ │ │ │ │ │ ├── init(variablename:inverted:).json │ │ │ │ │ │ ├── value(_:).json │ │ │ │ │ │ └── variable(name:inverted:).json │ │ │ │ │ ├── conditional(_:_:).json │ │ │ │ │ ├── conditions.json │ │ │ │ │ ├── conditions │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── __(_:_:)-4nx93.json │ │ │ │ │ │ ├── __(_:_:)-9xr9k.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── evaluate(with:).json │ │ │ │ │ │ ├── init(_:)-4lshs.json │ │ │ │ │ │ ├── init(_:)-8brl3.json │ │ │ │ │ │ ├── init(_:)-9ido7.json │ │ │ │ │ │ └── value.json │ │ │ │ │ ├── deferred(if:_:label:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── field(_:).json │ │ │ │ │ ├── field(_:alias:_:arguments:).json │ │ │ │ │ ├── field.json │ │ │ │ │ ├── field │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ │ ├── alias.json │ │ │ │ │ │ ├── arguments.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(_:alias:type:arguments:).json │ │ │ │ │ │ ├── name.json │ │ │ │ │ │ ├── outputtype.json │ │ │ │ │ │ ├── outputtype │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ │ │ ├── customscalar(_:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ │ │ ├── isnullable.json │ │ │ │ │ │ │ ├── list(_:).json │ │ │ │ │ │ │ ├── namedtype.json │ │ │ │ │ │ │ ├── nonnull(_:).json │ │ │ │ │ │ │ ├── object(_:).json │ │ │ │ │ │ │ └── scalar(_:).json │ │ │ │ │ │ ├── responsekey.json │ │ │ │ │ │ └── type.json │ │ │ │ │ ├── fragment(_:).json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ ├── include(if:_:)-1mgoh.json │ │ │ │ │ ├── include(if:_:)-2i1vt.json │ │ │ │ │ ├── include(if:_:)-2l05r.json │ │ │ │ │ ├── include(if:_:)-3p4my.json │ │ │ │ │ ├── include(if:_:)-8eyjn.json │ │ │ │ │ ├── include(if:_:)-9w8ok.json │ │ │ │ │ ├── include(if:_:)-jeck.json │ │ │ │ │ ├── include(if:_:)-r1a4.json │ │ │ │ │ └── inlinefragment(_:).json │ │ │ │ ├── selectionset.json │ │ │ │ ├── selectionset │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ ├── customdebugstringconvertible-implementations.json │ │ │ │ │ ├── debugdescription.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── fragments-swift.associatedtype.json │ │ │ │ │ ├── fragments-swift.property.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashable-implementations.json │ │ │ │ │ └── schema.json │ │ │ │ ├── selectionsetentityvalue.json │ │ │ │ ├── swift.json │ │ │ │ ├── swift │ │ │ │ │ ├── dictionary.json │ │ │ │ │ ├── dictionary │ │ │ │ │ │ ├── _initializablebydictionaryliteralelements-implementations.json │ │ │ │ │ │ └── init(_:).json │ │ │ │ │ ├── optional.json │ │ │ │ │ └── optional │ │ │ │ │ │ └── init(jsonvalue:).json │ │ │ │ ├── union.json │ │ │ │ └── union │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── canbeconverted(from:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── init(name:possibletypes:).json │ │ │ │ │ ├── name.json │ │ │ │ │ ├── parenttype-implementations.json │ │ │ │ │ └── possibletypes.json │ │ │ │ ├── apollocodegenlib.json │ │ │ │ ├── apollocodegenlib │ │ │ │ ├── apollocodegen.json │ │ │ │ ├── apollocodegen │ │ │ │ │ ├── build(with:withrooturl:itemstogenerate:operationidentifierprovider:).json │ │ │ │ │ ├── error.json │ │ │ │ │ ├── error │ │ │ │ │ │ ├── cannotloadoperations.json │ │ │ │ │ │ ├── cannotloadschema.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── fieldmergingincompatibility.json │ │ │ │ │ │ ├── graphqlsourcevalidationfailure(atlines:).json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── inputsearchpathinvalid(path:).json │ │ │ │ │ │ ├── invalidconfiguration(message:).json │ │ │ │ │ │ ├── invalidschemaname(_:message:).json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ │ ├── schemanameconflict(name:).json │ │ │ │ │ │ ├── targetnameconflict(name:).json │ │ │ │ │ │ └── testmocksinvalidswiftpackageconfiguration.json │ │ │ │ │ ├── itemstogenerate.json │ │ │ │ │ ├── itemstogenerate │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── all.json │ │ │ │ │ │ ├── code.json │ │ │ │ │ │ ├── contains(_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── formintersection(_:).json │ │ │ │ │ │ ├── formsymmetricdifference(_:).json │ │ │ │ │ │ ├── formunion(_:).json │ │ │ │ │ │ ├── init().json │ │ │ │ │ │ ├── init(_:).json │ │ │ │ │ │ ├── init(arrayliteral:).json │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ ├── insert(_:).json │ │ │ │ │ │ ├── intersection(_:).json │ │ │ │ │ │ ├── isdisjoint(with:).json │ │ │ │ │ │ ├── isempty.json │ │ │ │ │ │ ├── isstrictsubset(of:).json │ │ │ │ │ │ ├── isstrictsuperset(of:).json │ │ │ │ │ │ ├── issubset(of:).json │ │ │ │ │ │ ├── issuperset(of:).json │ │ │ │ │ │ ├── operationmanifest.json │ │ │ │ │ │ ├── optionset-implementations.json │ │ │ │ │ │ ├── rawvalue.json │ │ │ │ │ │ ├── remove(_:).json │ │ │ │ │ │ ├── setalgebra-implementations.json │ │ │ │ │ │ ├── subtract(_:).json │ │ │ │ │ │ ├── subtracting(_:).json │ │ │ │ │ │ ├── symmetricdifference(_:).json │ │ │ │ │ │ ├── union(_:).json │ │ │ │ │ │ └── update(with:).json │ │ │ │ │ ├── nonfatalerror.json │ │ │ │ │ ├── nonfatalerror │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ │ └── typenameconflict(name:conflictingname:containingobject:).json │ │ │ │ │ ├── nonfatalerrors.json │ │ │ │ │ └── nonfatalerrors │ │ │ │ │ │ ├── definitionentry.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── errorsbyfile-swift.property.json │ │ │ │ │ │ ├── errorsbyfile-swift.typealias.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── filename.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── isempty.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── apollocodegenconfiguration.json │ │ │ │ ├── apollocodegenconfiguration │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── accessmodifier.json │ │ │ │ │ ├── accessmodifier │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ ├── internal.json │ │ │ │ │ │ ├── public.json │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ ├── apolloconfigurationerror.json │ │ │ │ │ ├── apolloconfigurationerror │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── invalidvalueforkey(key:value:).json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ │ ├── apqconfig.json │ │ │ │ │ ├── apqconfig │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── automaticallypersist.json │ │ │ │ │ │ ├── disabled.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ ├── persistedoperationsonly.json │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ ├── composition.json │ │ │ │ │ ├── composition │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── exclude.json │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ ├── include.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ ├── conversionstrategies.json │ │ │ │ │ ├── conversionstrategies │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── caseconversionstrategy.json │ │ │ │ │ │ ├── caseconversionstrategy │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── camelcase.json │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ │ ├── none.json │ │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ │ ├── codingkeys.json │ │ │ │ │ │ ├── codingkeys │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── codingkey-implementations.json │ │ │ │ │ │ │ ├── debugdescription.json │ │ │ │ │ │ │ ├── description.json │ │ │ │ │ │ │ ├── enumcases.json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── fieldaccessors.json │ │ │ │ │ │ │ ├── init(intvalue:).json │ │ │ │ │ │ │ ├── init(stringvalue:).json │ │ │ │ │ │ │ └── inputobjects.json │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── enumcases.json │ │ │ │ │ │ │ ├── fieldaccessors.json │ │ │ │ │ │ │ └── inputobjects.json │ │ │ │ │ │ ├── enumcases-swift.enum.json │ │ │ │ │ │ ├── enumcases-swift.enum │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── camelcase.json │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ │ ├── none.json │ │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ │ ├── enumcases-swift.property.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── fieldaccessors-swift.enum.json │ │ │ │ │ │ ├── fieldaccessors-swift.enum │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── camelcase.json │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ │ ├── idiomatic.json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ │ ├── fieldaccessors-swift.property.json │ │ │ │ │ │ ├── init(enumcases:).json │ │ │ │ │ │ ├── init(enumcases:fieldaccessors:inputobjects:).json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── inputobjects-swift.enum.json │ │ │ │ │ │ ├── inputobjects-swift.enum │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── camelcase.json │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ │ ├── none.json │ │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ │ └── inputobjects-swift.property.json │ │ │ │ │ ├── default.json │ │ │ │ │ ├── default │ │ │ │ │ │ ├── experimentalfeatures.json │ │ │ │ │ │ ├── operationmanifest.json │ │ │ │ │ │ ├── options.json │ │ │ │ │ │ └── schemadownload.json │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── experimentalfeatures-swift.property.json │ │ │ │ │ ├── experimentalfeatures-swift.struct.json │ │ │ │ │ ├── experimentalfeatures-swift.struct │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── codingkeys.json │ │ │ │ │ │ ├── codingkeys │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── codingkey-implementations.json │ │ │ │ │ │ │ ├── debugdescription.json │ │ │ │ │ │ │ ├── description.json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── fieldmerging.json │ │ │ │ │ │ │ ├── init(intvalue:).json │ │ │ │ │ │ │ ├── init(stringvalue:).json │ │ │ │ │ │ │ └── legacysafelistingcompatibleoperations.json │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── fieldmerging.json │ │ │ │ │ │ │ └── legacysafelistingcompatibleoperations.json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── fieldmerging.json │ │ │ │ │ │ ├── init(fieldmerging:legacysafelistingcompatibleoperations:).json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ └── legacysafelistingcompatibleoperations.json │ │ │ │ │ ├── fieldmerging.json │ │ │ │ │ ├── fieldmerging │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── all.json │ │ │ │ │ │ ├── ancestors.json │ │ │ │ │ │ ├── decodable-implementations.json │ │ │ │ │ │ ├── encodable-implementations.json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(arrayliteral:).json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── insert(_:).json │ │ │ │ │ │ ├── namedfragments.json │ │ │ │ │ │ ├── none.json │ │ │ │ │ │ └── siblings.json │ │ │ │ │ ├── fileinput.json │ │ │ │ │ ├── fileinput │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── init(schemapath:operationsearchpaths:).json │ │ │ │ │ │ ├── init(schemasearchpaths:operationsearchpaths:).json │ │ │ │ │ │ ├── operationsearchpaths.json │ │ │ │ │ │ └── schemasearchpaths.json │ │ │ │ │ ├── fileoutput.json │ │ │ │ │ ├── fileoutput │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── operations.json │ │ │ │ │ │ │ └── testmocks.json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── init(schematypes:operations:testmocks:).json │ │ │ │ │ │ ├── init(schematypes:operations:testmocks:operationidentifierspath:).json │ │ │ │ │ │ ├── operationidentifierspath.json │ │ │ │ │ │ ├── operations.json │ │ │ │ │ │ ├── schematypes.json │ │ │ │ │ │ └── testmocks.json │ │ │ │ │ ├── init(from:).json │ │ │ │ │ ├── init(schemaname:input:output:options:experimentalfeatures:schemadownloadconfiguration:).json │ │ │ │ │ ├── init(schemanamespace:input:output:options:experimentalfeatures:schemadownload:operationmanifest:).json │ │ │ │ │ ├── input.json │ │ │ │ │ ├── operationdocumentformat.json │ │ │ │ │ ├── operationdocumentformat │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── codingkeys.json │ │ │ │ │ │ ├── codingkeys │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── codingkey-implementations.json │ │ │ │ │ │ │ ├── debugdescription.json │ │ │ │ │ │ │ ├── definition.json │ │ │ │ │ │ │ ├── description.json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ │ ├── init(intvalue:).json │ │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ │ ├── init(stringvalue:).json │ │ │ │ │ │ │ ├── operationid.json │ │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ │ ├── contains(_:).json │ │ │ │ │ │ ├── definition.json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── formintersection(_:).json │ │ │ │ │ │ ├── formsymmetricdifference(_:).json │ │ │ │ │ │ ├── formunion(_:).json │ │ │ │ │ │ ├── init().json │ │ │ │ │ │ ├── init(_:).json │ │ │ │ │ │ ├── init(arrayliteral:).json │ │ │ │ │ │ ├── init(from:)-2nbm0.json │ │ │ │ │ │ ├── init(from:)-55pr0.json │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ ├── insert(_:).json │ │ │ │ │ │ ├── intersection(_:).json │ │ │ │ │ │ ├── isdisjoint(with:).json │ │ │ │ │ │ ├── isempty.json │ │ │ │ │ │ ├── isstrictsubset(of:).json │ │ │ │ │ │ ├── isstrictsuperset(of:).json │ │ │ │ │ │ ├── issubset(of:).json │ │ │ │ │ │ ├── issuperset(of:).json │ │ │ │ │ │ ├── operationid.json │ │ │ │ │ │ ├── optionset-implementations.json │ │ │ │ │ │ ├── rawrepresentable-implementations.json │ │ │ │ │ │ ├── rawvalue.json │ │ │ │ │ │ ├── remove(_:).json │ │ │ │ │ │ ├── setalgebra-implementations.json │ │ │ │ │ │ ├── subtract(_:).json │ │ │ │ │ │ ├── subtracting(_:).json │ │ │ │ │ │ ├── symmetricdifference(_:).json │ │ │ │ │ │ ├── union(_:).json │ │ │ │ │ │ └── update(with:).json │ │ │ │ │ ├── operationmanifest.json │ │ │ │ │ ├── operationmanifestconfiguration.json │ │ │ │ │ ├── operationmanifestconfiguration │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── generatemanifestoncodegeneration.json │ │ │ │ │ │ │ └── version.json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── generatemanifestoncodegeneration.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── init(path:version:generatemanifestoncodegeneration:).json │ │ │ │ │ │ ├── path.json │ │ │ │ │ │ ├── version-swift.enum.json │ │ │ │ │ │ ├── version-swift.enum │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ │ ├── legacy.json │ │ │ │ │ │ │ ├── persistedqueries.json │ │ │ │ │ │ │ └── rawrepresentable-implementations.json │ │ │ │ │ │ └── version-swift.property.json │ │ │ │ │ ├── operationsfileoutput.json │ │ │ │ │ ├── operationsfileoutput │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── absolute(path:accessmodifier:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── inschemamodule.json │ │ │ │ │ │ └── relative(subpath:accessmodifier:).json │ │ │ │ │ ├── options.json │ │ │ │ │ ├── output.json │ │ │ │ │ ├── outputoptions.json │ │ │ │ │ ├── outputoptions │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── additionalinflectionrules.json │ │ │ │ │ │ ├── appendschematypefilenamesuffix.json │ │ │ │ │ │ ├── apqs.json │ │ │ │ │ │ ├── cocoapodscompatibleimportstatements.json │ │ │ │ │ │ ├── conversionstrategies.json │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── additionalinflectionrules.json │ │ │ │ │ │ │ ├── appendschematypefilenamesuffix.json │ │ │ │ │ │ │ ├── cocoapodscompatibleimportstatements.json │ │ │ │ │ │ │ ├── conversionstrategies.json │ │ │ │ │ │ │ ├── deprecatedenumcases.json │ │ │ │ │ │ │ ├── fieldmerging.json │ │ │ │ │ │ │ ├── markoperationdefinitionsasfinal.json │ │ │ │ │ │ │ ├── operationdocumentformat.json │ │ │ │ │ │ │ ├── prunegeneratedfiles.json │ │ │ │ │ │ │ ├── reducegeneratedschematypes.json │ │ │ │ │ │ │ ├── schemacustomization.json │ │ │ │ │ │ │ ├── schemadocumentation.json │ │ │ │ │ │ │ ├── selectionsetinitializers.json │ │ │ │ │ │ │ └── warningsondeprecatedusage.json │ │ │ │ │ │ ├── deprecatedenumcases.json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(additionalinflectionrules:deprecatedenumcases:schemadocumentation:selectionsetinitializers:operationdocumentformat:schemacustomization:cocoapodscompatibleimportstatements:warningsondeprecatedusage:conversionstrategies:prunegeneratedfil-140ri.json │ │ │ │ │ │ ├── init(additionalinflectionrules:deprecatedenumcases:schemadocumentation:selectionsetinitializers:operationdocumentformat:schemacustomization:reducegeneratedschematypes:cocoapodscompatibleimportstatements:warningsondeprecatedusage:conversions-8779l.json │ │ │ │ │ │ ├── init(additionalinflectionrules:querystringliteralformat:deprecatedenumcases:schemadocumentation:selectionsetinitializers:apqs:cocoapodscompatibleimportstatements:warningsondeprecatedusage:conversionstrategies:prunegeneratedfiles:markoperati-21wkk.json │ │ │ │ │ │ ├── init(additionalinflectionrules:querystringliteralformat:deprecatedenumcases:schemadocumentation:selectionsetinitializers:operationdocumentformat:cocoapodscompatibleimportstatements:warningsondeprecatedusage:conversionstrategies:prunegenerat-2yjhc.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── markoperationdefinitionsasfinal.json │ │ │ │ │ │ ├── operationdocumentformat.json │ │ │ │ │ │ ├── prunegeneratedfiles.json │ │ │ │ │ │ ├── querystringliteralformat-swift.enum.json │ │ │ │ │ │ ├── querystringliteralformat-swift.enum │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ │ ├── multiline.json │ │ │ │ │ │ │ ├── rawrepresentable-implementations.json │ │ │ │ │ │ │ └── singleline.json │ │ │ │ │ │ ├── querystringliteralformat-swift.property.json │ │ │ │ │ │ ├── reducegeneratedschematypes.json │ │ │ │ │ │ ├── schemacustomization.json │ │ │ │ │ │ ├── schemadocumentation.json │ │ │ │ │ │ ├── selectionsetinitializers.json │ │ │ │ │ │ └── warningsondeprecatedusage.json │ │ │ │ │ ├── schemacustomization.json │ │ │ │ │ ├── schemacustomization │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── customschematypename.json │ │ │ │ │ │ ├── customschematypename │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ ├── enum(name:cases:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── expressiblebyextendedgraphemeclusterliteral-implementations.json │ │ │ │ │ │ │ ├── expressiblebyunicodescalarliteral-implementations.json │ │ │ │ │ │ │ ├── init(extendedgraphemeclusterliteral:).json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── init(stringliteral:).json │ │ │ │ │ │ │ ├── init(unicodescalarliteral:).json │ │ │ │ │ │ │ ├── inputobject(name:fields:).json │ │ │ │ │ │ │ └── type(name:).json │ │ │ │ │ │ ├── customtypenames.json │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ └── customtypenames.json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── error.json │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ ├── decodingfailure(type:).json │ │ │ │ │ │ │ ├── emptycustomization(type:).json │ │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ │ │ ├── init(customtypenames:).json │ │ │ │ │ │ └── init(from:).json │ │ │ │ │ ├── schemadownload.json │ │ │ │ │ ├── schemaname.json │ │ │ │ │ ├── schemanamespace.json │ │ │ │ │ ├── schematypesfileoutput.json │ │ │ │ │ ├── schematypesfileoutput │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── init(path:moduletype:).json │ │ │ │ │ │ ├── moduletype-swift.enum.json │ │ │ │ │ │ ├── moduletype-swift.enum │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── apollosdkdependency.json │ │ │ │ │ │ │ ├── apollosdkdependency │ │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ │ ├── init(url:sdkversion:).json │ │ │ │ │ │ │ │ ├── sdkversion.json │ │ │ │ │ │ │ │ └── sdkversion │ │ │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ │ │ ├── branch(name:).json │ │ │ │ │ │ │ │ │ ├── commit(hash:).json │ │ │ │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ │ │ ├── exact(version:).json │ │ │ │ │ │ │ │ │ ├── from(version:).json │ │ │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ │ │ ├── init(fromstring:).json │ │ │ │ │ │ │ │ │ ├── local(path:).json │ │ │ │ │ │ │ │ │ └── stringvalue.json │ │ │ │ │ │ │ ├── embeddedintarget(name:accessmodifier:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ │ ├── swiftpackage(apollosdkdependency:).json │ │ │ │ │ │ │ └── swiftpackagemanager.json │ │ │ │ │ │ ├── moduletype-swift.property.json │ │ │ │ │ │ └── path.json │ │ │ │ │ ├── selectionsetinitializers.json │ │ │ │ │ ├── selectionsetinitializers │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── all.json │ │ │ │ │ │ ├── decodable-implementations.json │ │ │ │ │ │ ├── encodable-implementations.json │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── fragment(named:).json │ │ │ │ │ │ ├── init(arrayliteral:).json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── insert(_:).json │ │ │ │ │ │ ├── localcachemutations.json │ │ │ │ │ │ ├── namedfragments.json │ │ │ │ │ │ ├── operation(named:).json │ │ │ │ │ │ └── operations.json │ │ │ │ │ ├── testmockfileoutput.json │ │ │ │ │ └── testmockfileoutput │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── absolute(path:accessmodifier:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── none.json │ │ │ │ │ │ └── swiftpackage(targetname:).json │ │ │ │ ├── apollofilemanager.json │ │ │ │ ├── apollofilemanager │ │ │ │ │ ├── base.json │ │ │ │ │ ├── createcontainingdirectoryifneeded(forpath:).json │ │ │ │ │ ├── createdirectoryifneeded(atpath:).json │ │ │ │ │ ├── createfile(atpath:data:overwrite:).json │ │ │ │ │ ├── default.json │ │ │ │ │ ├── deletedirectory(atpath:).json │ │ │ │ │ ├── deletefile(atpath:).json │ │ │ │ │ ├── doesdirectoryexist(atpath:).json │ │ │ │ │ ├── doesfileexist(atpath:).json │ │ │ │ │ ├── renamefile(atpath:topath:).json │ │ │ │ │ └── writtenfiles.json │ │ │ │ ├── apolloschemadownloadconfiguration.json │ │ │ │ ├── apolloschemadownloadconfiguration │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── customdebugstringconvertible-implementations.json │ │ │ │ │ ├── debugdescription.json │ │ │ │ │ ├── default.json │ │ │ │ │ ├── default │ │ │ │ │ │ ├── downloadtimeout.json │ │ │ │ │ │ └── headers.json │ │ │ │ │ ├── downloadmethod-swift.enum.json │ │ │ │ │ ├── downloadmethod-swift.enum │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── ==(_:_:).json │ │ │ │ │ │ ├── apolloregistry(_:).json │ │ │ │ │ │ ├── apolloregistrysettings.json │ │ │ │ │ │ ├── apolloregistrysettings │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── apikey.json │ │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ └── variant.json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── graphid.json │ │ │ │ │ │ │ ├── init(apikey:graphid:variant:).json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ └── variant.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── httpmethod.json │ │ │ │ │ │ ├── httpmethod │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── description.json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── get(queryparametername:).json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ └── post.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ ├── introspection(endpointurl:httpmethod:outputformat:includedeprecatedinputvalues:).json │ │ │ │ │ │ ├── outputformat.json │ │ │ │ │ │ └── outputformat │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── description.json │ │ │ │ │ │ │ ├── encode(to:).json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ │ ├── json.json │ │ │ │ │ │ │ ├── rawrepresentable-implementations.json │ │ │ │ │ │ │ └── sdl.json │ │ │ │ │ ├── downloadmethod-swift.property.json │ │ │ │ │ ├── downloadtimeout.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── headers.json │ │ │ │ │ ├── httpheader.json │ │ │ │ │ ├── httpheader │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── debugdescription.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(from:).json │ │ │ │ │ │ └── init(key:value:).json │ │ │ │ │ ├── init(from:).json │ │ │ │ │ ├── init(using:timeout:headers:outputpath:).json │ │ │ │ │ ├── outputformat.json │ │ │ │ │ └── outputpath.json │ │ │ │ ├── apolloschemadownloader.json │ │ │ │ ├── apolloschemadownloader │ │ │ │ │ ├── fetch(configuration:withrooturl:session:).json │ │ │ │ │ ├── schemadownloaderror.json │ │ │ │ │ └── schemadownloaderror │ │ │ │ │ │ ├── couldnotconvertintrospectionjsontosdl(underlying:).json │ │ │ │ │ │ ├── couldnotcreatesdldatatowrite(schema:).json │ │ │ │ │ │ ├── couldnotcreateurlcomponentsfromendpointurl(url:).json │ │ │ │ │ │ ├── couldnotextractsdlfromregistryjson.json │ │ │ │ │ │ ├── couldnotgeturlfromurlcomponents(components:).json │ │ │ │ │ │ ├── couldnotparseregistryjson(underlying:).json │ │ │ │ │ │ ├── downloadedintrospectionjsonfilenotfound(underlying:).json │ │ │ │ │ │ ├── downloadedregistryjsonfilenotfound(underlying:).json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ │ └── unexpectedregistryjsontype.json │ │ │ │ ├── apollourlerror.json │ │ │ │ ├── apollourlerror │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── filenameisempty.json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── codegenlogger.json │ │ │ │ ├── codegenlogger │ │ │ │ │ ├── level.json │ │ │ │ │ ├── log(_:loglevel:file:line:).json │ │ │ │ │ ├── loglevel.json │ │ │ │ │ └── loglevel │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── debug.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── error.json │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ ├── rawrepresentable-implementations.json │ │ │ │ │ │ └── warning.json │ │ │ │ ├── constants.json │ │ │ │ ├── constants │ │ │ │ │ └── codegenversion.json │ │ │ │ ├── fileattributes.json │ │ │ │ ├── filemanagerpatherror.json │ │ │ │ ├── filemanagerpatherror │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── cannotcreatefile(at:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ ├── notadirectory(path:).json │ │ │ │ │ ├── notafile(path:).json │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── foundation.json │ │ │ │ ├── foundation │ │ │ │ │ ├── filehandle.json │ │ │ │ │ ├── filehandle │ │ │ │ │ │ ├── textoutputstream-implementations.json │ │ │ │ │ │ └── write(_:).json │ │ │ │ │ ├── url.json │ │ │ │ │ ├── url │ │ │ │ │ │ ├── childfileurl(filename:).json │ │ │ │ │ │ ├── childfolderurl(foldername:).json │ │ │ │ │ │ └── parentfolderurl().json │ │ │ │ │ ├── urlsession.json │ │ │ │ │ └── urlsession │ │ │ │ │ │ ├── loaddata(with:completionhandler:).json │ │ │ │ │ │ └── networksession-implementations.json │ │ │ │ ├── glob.json │ │ │ │ ├── glob │ │ │ │ │ ├── matcherror.json │ │ │ │ │ └── matcherror │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── aborted.json │ │ │ │ │ │ ├── cannotenumerate(path:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errordescription.json │ │ │ │ │ │ ├── failurereason.json │ │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ │ ├── invalidexclude(path:).json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ │ ├── nospace.json │ │ │ │ │ │ ├── recoverysuggestion.json │ │ │ │ │ │ └── unknown(code:).json │ │ │ │ ├── inflectionrule.json │ │ │ │ ├── inflectionrule │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── init(from:).json │ │ │ │ │ ├── irregular(singular:plural:).json │ │ │ │ │ ├── pluralization(singularregex:replacementregex:).json │ │ │ │ │ ├── singularization(pluralregex:replacementregex:).json │ │ │ │ │ └── uncountable(word:).json │ │ │ │ ├── networksession.json │ │ │ │ ├── networksession │ │ │ │ │ └── loaddata(with:completionhandler:).json │ │ │ │ ├── operationdescriptor.json │ │ │ │ ├── operationdescriptor │ │ │ │ │ ├── filepath.json │ │ │ │ │ ├── name.json │ │ │ │ │ ├── operationtype.json │ │ │ │ │ ├── operationtype │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ ├── mutation.json │ │ │ │ │ │ ├── query.json │ │ │ │ │ │ ├── rawrepresentable-implementations.json │ │ │ │ │ │ └── subscription.json │ │ │ │ │ ├── rawsourcetext.json │ │ │ │ │ ├── sourceformat.json │ │ │ │ │ ├── sourceformat │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── manifestjsonbody.json │ │ │ │ │ │ └── rawsource.json │ │ │ │ │ └── type.json │ │ │ │ └── operationidentifierprovider.json │ │ │ │ ├── apollopagination.json │ │ │ │ ├── apollopagination │ │ │ │ ├── asyncgraphqlquerypager.json │ │ │ │ ├── asyncgraphqlquerypager │ │ │ │ │ ├── allsatisfy(_:).json │ │ │ │ │ ├── append(_:).json │ │ │ │ │ ├── assertnofailure(_:file:line:).json │ │ │ │ │ ├── assign(to:).json │ │ │ │ │ ├── assign(to:on:).json │ │ │ │ │ ├── breakpoint(receivesubscription:receiveoutput:receivecompletion:).json │ │ │ │ │ ├── breakpointonerror().json │ │ │ │ │ ├── buffer(size:prefetch:whenfull:).json │ │ │ │ │ ├── cancellables.json │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ ├── catch(_:).json │ │ │ │ │ ├── collect().json │ │ │ │ │ ├── collect(_:).json │ │ │ │ │ ├── collect(_:options:).json │ │ │ │ │ ├── combinelatest(_:).json │ │ │ │ │ ├── combinelatest(_:_:)-48gec.json │ │ │ │ │ ├── combinelatest(_:_:)-4zsjg.json │ │ │ │ │ ├── combinelatest(_:_:_:)-2g3tq.json │ │ │ │ │ ├── combinelatest(_:_:_:)-332rm.json │ │ │ │ │ ├── combinelatest(_:_:_:_:).json │ │ │ │ │ ├── compactmap(_:).json │ │ │ │ │ ├── contains(_:).json │ │ │ │ │ ├── contains(where:).json │ │ │ │ │ ├── count().json │ │ │ │ │ ├── debounce(for:scheduler:options:).json │ │ │ │ │ ├── decode(type:decoder:).json │ │ │ │ │ ├── delay(for:tolerance:scheduler:options:).json │ │ │ │ │ ├── drop(untiloutputfrom:).json │ │ │ │ │ ├── drop(while:).json │ │ │ │ │ ├── dropfirst(_:).json │ │ │ │ │ ├── erasetoanypublisher().json │ │ │ │ │ ├── failure.json │ │ │ │ │ ├── fetch().json │ │ │ │ │ ├── filter(_:).json │ │ │ │ │ ├── first().json │ │ │ │ │ ├── first(where:).json │ │ │ │ │ ├── flatmap(maxpublishers:_:)-18s1g.json │ │ │ │ │ ├── flatmap(maxpublishers:_:)-4rfcg.json │ │ │ │ │ ├── flatmap(maxpublishers:_:)-9udqa.json │ │ │ │ │ ├── flatmap(maxpublishers:_:)-be6d.json │ │ │ │ │ ├── handleevents(receivesubscription:receiveoutput:receivecompletion:receivecancel:receiverequest:).json │ │ │ │ │ ├── ignoreoutput().json │ │ │ │ │ ├── init(client:initialquery:watcherdispatchqueue:extractinitialpageinfo:extractnextpageinfo:pageresolver:).json │ │ │ │ │ ├── init(client:initialquery:watcherdispatchqueue:extractpageinfo:pageresolver:).json │ │ │ │ │ ├── init(client:initialquery:watcherdispatchqueue:extractpageinfo:pageresolver:transform:).json │ │ │ │ │ ├── init(client:watcherdispatchqueue:initialquery:extractpageinfo:pageresolver:).json │ │ │ │ │ ├── last().json │ │ │ │ │ ├── last(where:).json │ │ │ │ │ ├── loadall(fetchfrominitialpage:).json │ │ │ │ │ ├── loadnext(cachepolicy:).json │ │ │ │ │ ├── loadprevious(cachepolicy:).json │ │ │ │ │ ├── makeconnectable().json │ │ │ │ │ ├── map(_:)-82inb.json │ │ │ │ │ ├── map(_:)-9qm4q.json │ │ │ │ │ ├── map(_:_:).json │ │ │ │ │ ├── map(_:_:_:).json │ │ │ │ │ ├── maperror(_:).json │ │ │ │ │ ├── max(by:).json │ │ │ │ │ ├── measureinterval(using:options:).json │ │ │ │ │ ├── merge(with:).json │ │ │ │ │ ├── merge(with:_:).json │ │ │ │ │ ├── merge(with:_:_:).json │ │ │ │ │ ├── merge(with:_:_:_:).json │ │ │ │ │ ├── merge(with:_:_:_:_:).json │ │ │ │ │ ├── merge(with:_:_:_:_:_:).json │ │ │ │ │ ├── merge(with:_:_:_:_:_:_:).json │ │ │ │ │ ├── min(by:).json │ │ │ │ │ ├── multicast(_:).json │ │ │ │ │ ├── multicast(subject:).json │ │ │ │ │ ├── output(at:).json │ │ │ │ │ ├── output(in:).json │ │ │ │ │ ├── output.json │ │ │ │ │ ├── pager.json │ │ │ │ │ ├── prefix(_:).json │ │ │ │ │ ├── prefix(untiloutputfrom:).json │ │ │ │ │ ├── prefix(while:).json │ │ │ │ │ ├── prepend(_:).json │ │ │ │ │ ├── print(_:to:).json │ │ │ │ │ ├── publisher-implementations.json │ │ │ │ │ ├── receive(on:options:).json │ │ │ │ │ ├── receive(subscriber:).json │ │ │ │ │ ├── reduce(_:_:).json │ │ │ │ │ ├── refetch(cachepolicy:).json │ │ │ │ │ ├── removeduplicates().json │ │ │ │ │ ├── removeduplicates(by:).json │ │ │ │ │ ├── replaceempty(with:).json │ │ │ │ │ ├── replaceerror(with:).json │ │ │ │ │ ├── replacenil(with:).json │ │ │ │ │ ├── reset().json │ │ │ │ │ ├── retry(_:).json │ │ │ │ │ ├── scan(_:_:).json │ │ │ │ │ ├── setfailuretype(to:).json │ │ │ │ │ ├── share().json │ │ │ │ │ ├── sink(receivecompletion:receivevalue:).json │ │ │ │ │ ├── sink(receivevalue:).json │ │ │ │ │ ├── subscribe(_:)-82ill.json │ │ │ │ │ ├── subscribe(_:)-8nx1c.json │ │ │ │ │ ├── subscribe(completion:).json │ │ │ │ │ ├── subscribe(on:options:).json │ │ │ │ │ ├── throttle(for:scheduler:latest:).json │ │ │ │ │ ├── timeout(_:scheduler:options:customerror:).json │ │ │ │ │ ├── tryallsatisfy(_:).json │ │ │ │ │ ├── trycatch(_:).json │ │ │ │ │ ├── trycompactmap(_:).json │ │ │ │ │ ├── trycontains(where:).json │ │ │ │ │ ├── trydrop(while:).json │ │ │ │ │ ├── tryfilter(_:).json │ │ │ │ │ ├── tryfirst(where:).json │ │ │ │ │ ├── trylast(where:).json │ │ │ │ │ ├── trymap(_:).json │ │ │ │ │ ├── trymax(by:).json │ │ │ │ │ ├── trymin(by:).json │ │ │ │ │ ├── tryprefix(while:).json │ │ │ │ │ ├── tryreduce(_:_:).json │ │ │ │ │ ├── tryremoveduplicates(by:).json │ │ │ │ │ ├── tryscan(_:_:).json │ │ │ │ │ ├── values.json │ │ │ │ │ ├── zip(_:).json │ │ │ │ │ ├── zip(_:_:)-2ivds.json │ │ │ │ │ ├── zip(_:_:)-58jd0.json │ │ │ │ │ ├── zip(_:_:_:)-2qx3t.json │ │ │ │ │ ├── zip(_:_:_:)-8i3mw.json │ │ │ │ │ └── zip(_:_:_:_:).json │ │ │ │ ├── asyncpagertype.json │ │ │ │ ├── asyncpagertype │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ ├── fetch().json │ │ │ │ │ ├── initialquery.json │ │ │ │ │ ├── loadall(fetchfrominitialpage:).json │ │ │ │ │ ├── loadnext(cachepolicy:).json │ │ │ │ │ ├── loadprevious(cachepolicy:).json │ │ │ │ │ ├── paginatedquery.json │ │ │ │ │ ├── refetch(cachepolicy:).json │ │ │ │ │ └── reset().json │ │ │ │ ├── cursorbasedpagination.json │ │ │ │ ├── cursorbasedpagination │ │ │ │ │ ├── bidirectional.json │ │ │ │ │ ├── bidirectional │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ │ ├── endcursor.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── hasnext.json │ │ │ │ │ │ ├── hasprevious.json │ │ │ │ │ │ ├── init(hasnext:endcursor:hasprevious:startcursor:).json │ │ │ │ │ │ └── startcursor.json │ │ │ │ │ ├── forward.json │ │ │ │ │ ├── forward │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ │ ├── endcursor.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── hasnext.json │ │ │ │ │ │ └── init(hasnext:endcursor:).json │ │ │ │ │ ├── reverse.json │ │ │ │ │ └── reverse │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── hasprevious.json │ │ │ │ │ │ ├── init(hasprevious:startcursor:).json │ │ │ │ │ │ └── startcursor.json │ │ │ │ ├── graphqlquerypager.json │ │ │ │ ├── graphqlquerypager │ │ │ │ │ ├── allsatisfy(_:).json │ │ │ │ │ ├── append(_:).json │ │ │ │ │ ├── assertnofailure(_:file:line:).json │ │ │ │ │ ├── assign(to:).json │ │ │ │ │ ├── assign(to:on:).json │ │ │ │ │ ├── breakpoint(receivesubscription:receiveoutput:receivecompletion:).json │ │ │ │ │ ├── breakpointonerror().json │ │ │ │ │ ├── buffer(size:prefetch:whenfull:).json │ │ │ │ │ ├── cancellables.json │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ ├── catch(_:).json │ │ │ │ │ ├── collect().json │ │ │ │ │ ├── collect(_:).json │ │ │ │ │ ├── collect(_:options:).json │ │ │ │ │ ├── combinelatest(_:).json │ │ │ │ │ ├── combinelatest(_:_:)-32h5s.json │ │ │ │ │ ├── combinelatest(_:_:)-3m6fr.json │ │ │ │ │ ├── combinelatest(_:_:_:)-4qg8v.json │ │ │ │ │ ├── combinelatest(_:_:_:)-81x5u.json │ │ │ │ │ ├── combinelatest(_:_:_:_:).json │ │ │ │ │ ├── compactmap(_:).json │ │ │ │ │ ├── contains(_:).json │ │ │ │ │ ├── contains(where:).json │ │ │ │ │ ├── count().json │ │ │ │ │ ├── debounce(for:scheduler:options:).json │ │ │ │ │ ├── decode(type:decoder:).json │ │ │ │ │ ├── delay(for:tolerance:scheduler:options:).json │ │ │ │ │ ├── drop(untiloutputfrom:).json │ │ │ │ │ ├── drop(while:).json │ │ │ │ │ ├── dropfirst(_:).json │ │ │ │ │ ├── erasetoanypublisher().json │ │ │ │ │ ├── failure.json │ │ │ │ │ ├── fetch(callbackqueue:completion:).json │ │ │ │ │ ├── filter(_:).json │ │ │ │ │ ├── first().json │ │ │ │ │ ├── first(where:).json │ │ │ │ │ ├── flatmap(maxpublishers:_:)-5xn93.json │ │ │ │ │ ├── flatmap(maxpublishers:_:)-6ydp0.json │ │ │ │ │ ├── flatmap(maxpublishers:_:)-7tjjf.json │ │ │ │ │ ├── flatmap(maxpublishers:_:)-v65z.json │ │ │ │ │ ├── handleevents(receivesubscription:receiveoutput:receivecompletion:receivecancel:receiverequest:).json │ │ │ │ │ ├── ignoreoutput().json │ │ │ │ │ ├── init(client:initialquery:watcherdispatchqueue:extractinitialpageinfo:extractnextpageinfo:pageresolver:).json │ │ │ │ │ ├── init(client:watcherdispatchqueue:initialquery:extractpageinfo:pageresolver:)-1dfxm.json │ │ │ │ │ ├── init(client:watcherdispatchqueue:initialquery:extractpageinfo:pageresolver:)-1qs2h.json │ │ │ │ │ ├── init(client:watcherdispatchqueue:initialquery:extractpageinfo:pageresolver:transform:).json │ │ │ │ │ ├── last().json │ │ │ │ │ ├── last(where:).json │ │ │ │ │ ├── loadall(fetchfrominitialpage:callbackqueue:completion:).json │ │ │ │ │ ├── loadnext(cachepolicy:callbackqueue:completion:).json │ │ │ │ │ ├── loadprevious(cachepolicy:callbackqueue:completion:).json │ │ │ │ │ ├── makeconnectable().json │ │ │ │ │ ├── map(_:)-1n0d2.json │ │ │ │ │ ├── map(_:)-5xco8.json │ │ │ │ │ ├── map(_:_:).json │ │ │ │ │ ├── map(_:_:_:).json │ │ │ │ │ ├── maperror(_:).json │ │ │ │ │ ├── max(by:).json │ │ │ │ │ ├── measureinterval(using:options:).json │ │ │ │ │ ├── merge(with:).json │ │ │ │ │ ├── merge(with:_:).json │ │ │ │ │ ├── merge(with:_:_:).json │ │ │ │ │ ├── merge(with:_:_:_:).json │ │ │ │ │ ├── merge(with:_:_:_:_:).json │ │ │ │ │ ├── merge(with:_:_:_:_:_:).json │ │ │ │ │ ├── merge(with:_:_:_:_:_:_:).json │ │ │ │ │ ├── min(by:).json │ │ │ │ │ ├── multicast(_:).json │ │ │ │ │ ├── multicast(subject:).json │ │ │ │ │ ├── output(at:).json │ │ │ │ │ ├── output(in:).json │ │ │ │ │ ├── output.json │ │ │ │ │ ├── pager.json │ │ │ │ │ ├── prefix(_:).json │ │ │ │ │ ├── prefix(untiloutputfrom:).json │ │ │ │ │ ├── prefix(while:).json │ │ │ │ │ ├── prepend(_:).json │ │ │ │ │ ├── print(_:to:).json │ │ │ │ │ ├── publisher-implementations.json │ │ │ │ │ ├── receive(on:options:).json │ │ │ │ │ ├── receive(subscriber:).json │ │ │ │ │ ├── reduce(_:_:).json │ │ │ │ │ ├── refetch(cachepolicy:callbackqueue:completion:).json │ │ │ │ │ ├── removeduplicates().json │ │ │ │ │ ├── removeduplicates(by:).json │ │ │ │ │ ├── replaceempty(with:).json │ │ │ │ │ ├── replaceerror(with:).json │ │ │ │ │ ├── replacenil(with:).json │ │ │ │ │ ├── reset().json │ │ │ │ │ ├── retry(_:).json │ │ │ │ │ ├── scan(_:_:).json │ │ │ │ │ ├── setfailuretype(to:).json │ │ │ │ │ ├── share().json │ │ │ │ │ ├── sink(receivecompletion:receivevalue:).json │ │ │ │ │ ├── sink(receivevalue:).json │ │ │ │ │ ├── subscribe(_:)-5vwe3.json │ │ │ │ │ ├── subscribe(_:)-87xwh.json │ │ │ │ │ ├── subscribe(completion:).json │ │ │ │ │ ├── subscribe(on:options:).json │ │ │ │ │ ├── throttle(for:scheduler:latest:).json │ │ │ │ │ ├── timeout(_:scheduler:options:customerror:).json │ │ │ │ │ ├── tryallsatisfy(_:).json │ │ │ │ │ ├── trycatch(_:).json │ │ │ │ │ ├── trycompactmap(_:).json │ │ │ │ │ ├── trycontains(where:).json │ │ │ │ │ ├── trydrop(while:).json │ │ │ │ │ ├── tryfilter(_:).json │ │ │ │ │ ├── tryfirst(where:).json │ │ │ │ │ ├── trylast(where:).json │ │ │ │ │ ├── trymap(_:).json │ │ │ │ │ ├── trymax(by:).json │ │ │ │ │ ├── trymin(by:).json │ │ │ │ │ ├── tryprefix(while:).json │ │ │ │ │ ├── tryreduce(_:_:).json │ │ │ │ │ ├── tryremoveduplicates(by:).json │ │ │ │ │ ├── tryscan(_:_:).json │ │ │ │ │ ├── values.json │ │ │ │ │ ├── zip(_:).json │ │ │ │ │ ├── zip(_:_:)-3oklf.json │ │ │ │ │ ├── zip(_:_:)-7ik1f.json │ │ │ │ │ ├── zip(_:_:_:)-1pr.json │ │ │ │ │ ├── zip(_:_:_:)-88gn6.json │ │ │ │ │ └── zip(_:_:_:_:).json │ │ │ │ ├── offsetpagination.json │ │ │ │ ├── offsetpagination │ │ │ │ │ ├── bidirectional.json │ │ │ │ │ ├── bidirectional │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(offset:canloadnext:canloadprevious:).json │ │ │ │ │ │ └── offset.json │ │ │ │ │ ├── forward.json │ │ │ │ │ ├── forward │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(offset:canloadnext:).json │ │ │ │ │ │ └── offset.json │ │ │ │ │ ├── reverse.json │ │ │ │ │ └── reverse │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── init(offset:canloadprevious:).json │ │ │ │ │ │ └── offset.json │ │ │ │ ├── pageextractiondata.json │ │ │ │ ├── pageextractiondata │ │ │ │ │ ├── initial(_:_:).json │ │ │ │ │ └── paginated(_:_:).json │ │ │ │ ├── pagertype.json │ │ │ │ ├── pagertype │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ ├── canloadprevious.json │ │ │ │ │ ├── fetch(callbackqueue:completion:).json │ │ │ │ │ ├── initialquery.json │ │ │ │ │ ├── loadall(fetchfrominitialpage:callbackqueue:completion:).json │ │ │ │ │ ├── loadnext(cachepolicy:callbackqueue:completion:).json │ │ │ │ │ ├── loadprevious(cachepolicy:callbackqueue:completion:).json │ │ │ │ │ ├── paginatedquery.json │ │ │ │ │ ├── refetch(cachepolicy:callbackqueue:completion:).json │ │ │ │ │ └── reset().json │ │ │ │ ├── paginationdirection.json │ │ │ │ ├── paginationdirection │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── next.json │ │ │ │ │ └── previous.json │ │ │ │ ├── paginationerror.json │ │ │ │ ├── paginationerror │ │ │ │ │ ├── cancellation.json │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── loadinprogress.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── missinginitialpage.json │ │ │ │ │ ├── noquery.json │ │ │ │ │ ├── pagehasnomorecontent.json │ │ │ │ │ └── unknown(_:).json │ │ │ │ ├── paginationinfo.json │ │ │ │ ├── paginationinfo │ │ │ │ │ ├── canloadnext.json │ │ │ │ │ └── canloadprevious.json │ │ │ │ ├── paginationoutput.json │ │ │ │ ├── paginationoutput │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── alldata.json │ │ │ │ │ ├── allerrors.json │ │ │ │ │ ├── allpages.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── init(previouspages:initialpage:nextpages:lastupdatedpage:).json │ │ │ │ │ ├── initialpage.json │ │ │ │ │ ├── lastupdatedpage.json │ │ │ │ │ ├── nextpages.json │ │ │ │ │ ├── previouspages.json │ │ │ │ │ ├── querywrapper.json │ │ │ │ │ └── querywrapper │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── errors.json │ │ │ │ │ │ ├── initial(_:).json │ │ │ │ │ │ ├── paginated(_:).json │ │ │ │ │ │ └── source.json │ │ │ │ ├── updatesource.json │ │ │ │ └── updatesource │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── cache.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ └── server.json │ │ │ │ ├── apollosqlite.json │ │ │ │ ├── apollosqlite │ │ │ │ ├── databaserow.json │ │ │ │ ├── journalmode.json │ │ │ │ ├── journalmode │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ ├── memory.json │ │ │ │ │ ├── off.json │ │ │ │ │ ├── persist.json │ │ │ │ │ ├── rawrepresentable-implementations.json │ │ │ │ │ ├── truncate.json │ │ │ │ │ └── wal.json │ │ │ │ ├── sqlitedatabase.json │ │ │ │ ├── sqlitedatabase │ │ │ │ │ ├── addorupdate(records:).json │ │ │ │ │ ├── addorupdaterecordstring(_:for:)-4jvew.json │ │ │ │ │ ├── addorupdaterecordstring(_:for:)-8xg0a.json │ │ │ │ │ ├── cleardatabase(shouldvacuumonclear:).json │ │ │ │ │ ├── createrecordstableifneeded().json │ │ │ │ │ ├── deleterecord(for:).json │ │ │ │ │ ├── deleterecords(matching:).json │ │ │ │ │ ├── idcolumnname.json │ │ │ │ │ ├── init(fileurl:).json │ │ │ │ │ ├── keycolumnname.json │ │ │ │ │ ├── recordcolumname.json │ │ │ │ │ ├── selectrawrows(forkeys:).json │ │ │ │ │ └── tablename.json │ │ │ │ ├── sqlitedotswiftdatabase.json │ │ │ │ ├── sqlitedotswiftdatabase │ │ │ │ │ ├── addorupdate(records:).json │ │ │ │ │ ├── addorupdaterecordstring(_:for:).json │ │ │ │ │ ├── cleardatabase(shouldvacuumonclear:).json │ │ │ │ │ ├── createrecordstableifneeded().json │ │ │ │ │ ├── deleterecord(for:).json │ │ │ │ │ ├── deleterecords(matching:).json │ │ │ │ │ ├── idcolumnname.json │ │ │ │ │ ├── init(connection:).json │ │ │ │ │ ├── init(fileurl:).json │ │ │ │ │ ├── keycolumnname.json │ │ │ │ │ ├── recordcolumname.json │ │ │ │ │ ├── selectrawrows(forkeys:).json │ │ │ │ │ ├── setjournalmode(mode:).json │ │ │ │ │ ├── sqlitedatabase-implementations.json │ │ │ │ │ └── tablename.json │ │ │ │ ├── sqlitenormalizedcache.json │ │ │ │ ├── sqlitenormalizedcache │ │ │ │ │ ├── clear().json │ │ │ │ │ ├── init(database:shouldvacuumonclear:).json │ │ │ │ │ ├── init(fileurl:databasetype:shouldvacuumonclear:).json │ │ │ │ │ ├── loadrecords(forkeys:).json │ │ │ │ │ ├── merge(records:).json │ │ │ │ │ ├── normalizedcache-implementations.json │ │ │ │ │ ├── removerecord(for:).json │ │ │ │ │ └── removerecords(matching:).json │ │ │ │ ├── sqlitenormalizedcacheerror.json │ │ │ │ └── sqlitenormalizedcacheerror │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── invalidrecordencoding(record:).json │ │ │ │ │ ├── invalidrecordshape(object:).json │ │ │ │ │ └── localizeddescription.json │ │ │ │ ├── apollowebsocket.json │ │ │ │ ├── apollowebsocket │ │ │ │ ├── apollosequencedoperationmessageidcreator.json │ │ │ │ ├── apollosequencedoperationmessageidcreator │ │ │ │ │ ├── init(startat:).json │ │ │ │ │ └── requestid().json │ │ │ │ ├── operationmessageidcreator.json │ │ │ │ ├── operationmessageidcreator │ │ │ │ │ └── requestid().json │ │ │ │ ├── socksproxyable.json │ │ │ │ ├── socksproxyable │ │ │ │ │ └── enablesocksproxy.json │ │ │ │ ├── splitnetworktransport.json │ │ │ │ ├── splitnetworktransport │ │ │ │ │ ├── addapolloclientheaders(to:).json │ │ │ │ │ ├── clientname.json │ │ │ │ │ ├── clientversion.json │ │ │ │ │ ├── defaultclientname.json │ │ │ │ │ ├── defaultclientversion.json │ │ │ │ │ ├── headerfieldnameapolloclientname.json │ │ │ │ │ ├── headerfieldnameapolloclientversion.json │ │ │ │ │ ├── init(uploadingnetworktransport:websocketnetworktransport:).json │ │ │ │ │ ├── networktransport-implementations.json │ │ │ │ │ ├── send(operation:cachepolicy:contextidentifier:context:callbackqueue:completionhandler:).json │ │ │ │ │ ├── upload(operation:files:context:callbackqueue:completionhandler:).json │ │ │ │ │ └── uploadingnetworktransport-implementations.json │ │ │ │ ├── sslcert.json │ │ │ │ ├── sslcert │ │ │ │ │ ├── init(data:).json │ │ │ │ │ └── init(key:).json │ │ │ │ ├── sslclientcertificate.json │ │ │ │ ├── sslclientcertificate │ │ │ │ │ ├── init(identity:identitycertificate:).json │ │ │ │ │ ├── init(pkcs12path:password:).json │ │ │ │ │ ├── init(pkcs12url:importoptions:).json │ │ │ │ │ └── init(pkcs12url:password:).json │ │ │ │ ├── sslclientcertificateerror.json │ │ │ │ ├── sslclientcertificateerror │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── sslsecurity.json │ │ │ │ ├── sslsecurity │ │ │ │ │ ├── certificatechain(_:).json │ │ │ │ │ ├── extractpublickey(_:).json │ │ │ │ │ ├── extractpublickey(_:policy:).json │ │ │ │ │ ├── init(certs:usepublickeys:).json │ │ │ │ │ ├── init(usepublickeys:).json │ │ │ │ │ ├── isvalid(_:domain:).json │ │ │ │ │ ├── publickeychain(_:).json │ │ │ │ │ ├── validateddn.json │ │ │ │ │ └── validateentirechain.json │ │ │ │ ├── sslsettings.json │ │ │ │ ├── sslsettings │ │ │ │ │ ├── ciphersuites.json │ │ │ │ │ ├── desiredtrusthostname.json │ │ │ │ │ ├── disablecertvalidation.json │ │ │ │ │ ├── overridetrusthostname.json │ │ │ │ │ ├── sslclientcertificate.json │ │ │ │ │ └── usessl.json │ │ │ │ ├── ssltrustvalidator.json │ │ │ │ ├── ssltrustvalidator │ │ │ │ │ └── isvalid(_:domain:).json │ │ │ │ ├── websocket.json │ │ │ │ ├── websocket │ │ │ │ │ ├── callbackqueue.json │ │ │ │ │ ├── connect().json │ │ │ │ │ ├── currenturl.json │ │ │ │ │ ├── delegate.json │ │ │ │ │ ├── desiredtrusthostname.json │ │ │ │ │ ├── disablesslcertvalidation.json │ │ │ │ │ ├── disconnect(forcetimeout:).json │ │ │ │ │ ├── enablecompression.json │ │ │ │ │ ├── enabledsslciphersuites.json │ │ │ │ │ ├── enablesocksproxy.json │ │ │ │ │ ├── init(request:protocol:).json │ │ │ │ │ ├── init(url:protocol:).json │ │ │ │ │ ├── init(url:writequeueqos:protocol:).json │ │ │ │ │ ├── isconnected.json │ │ │ │ │ ├── newbytesinstream().json │ │ │ │ │ ├── onconnect.json │ │ │ │ │ ├── ondata.json │ │ │ │ │ ├── ondisconnect.json │ │ │ │ │ ├── onhttpresponseheaders.json │ │ │ │ │ ├── onpong.json │ │ │ │ │ ├── ontext.json │ │ │ │ │ ├── opcode.json │ │ │ │ │ ├── opcode │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── binaryframe.json │ │ │ │ │ │ ├── connectionclose.json │ │ │ │ │ │ ├── continueframe.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── hash(into:).json │ │ │ │ │ │ ├── hashvalue.json │ │ │ │ │ │ ├── init(rawvalue:).json │ │ │ │ │ │ ├── ping.json │ │ │ │ │ │ ├── pong.json │ │ │ │ │ │ ├── rawrepresentable-implementations.json │ │ │ │ │ │ └── textframe.json │ │ │ │ │ ├── overridetrusthostname.json │ │ │ │ │ ├── request.json │ │ │ │ │ ├── respondtopingwithpong.json │ │ │ │ │ ├── security.json │ │ │ │ │ ├── sslclientcertificate.json │ │ │ │ │ ├── streamdiderror(error:).json │ │ │ │ │ ├── write(ping:completion:).json │ │ │ │ │ ├── write(string:).json │ │ │ │ │ ├── wserror.json │ │ │ │ │ ├── wserror │ │ │ │ │ │ ├── code.json │ │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ │ ├── errortype.json │ │ │ │ │ │ ├── errortype │ │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ │ ├── closeerror.json │ │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ │ ├── invalidsslerror.json │ │ │ │ │ │ │ ├── outputstreamwriteerror.json │ │ │ │ │ │ │ ├── protocolerror.json │ │ │ │ │ │ │ ├── upgradeerror.json │ │ │ │ │ │ │ └── writetimeouterror.json │ │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ │ ├── message.json │ │ │ │ │ │ └── type.json │ │ │ │ │ ├── wsprotocol.json │ │ │ │ │ └── wsprotocol │ │ │ │ │ │ ├── !=(_:_:).json │ │ │ │ │ │ ├── description.json │ │ │ │ │ │ ├── equatable-implementations.json │ │ │ │ │ │ ├── graphql_transport_ws.json │ │ │ │ │ │ └── graphql_ws.json │ │ │ │ ├── websocketclient.json │ │ │ │ ├── websocketclient │ │ │ │ │ ├── callbackqueue.json │ │ │ │ │ ├── connect().json │ │ │ │ │ ├── delegate.json │ │ │ │ │ ├── disconnect(forcetimeout:).json │ │ │ │ │ ├── request.json │ │ │ │ │ ├── write(ping:completion:).json │ │ │ │ │ └── write(string:).json │ │ │ │ ├── websocketclientdelegate.json │ │ │ │ ├── websocketclientdelegate │ │ │ │ │ ├── websocketdidconnect(socket:).json │ │ │ │ │ ├── websocketdiddisconnect(socket:error:).json │ │ │ │ │ ├── websocketdidreceivedata(socket:data:).json │ │ │ │ │ └── websocketdidreceivemessage(socket:text:).json │ │ │ │ ├── websocketerror.json │ │ │ │ ├── websocketerror │ │ │ │ │ ├── error-implementations.json │ │ │ │ │ ├── error.json │ │ │ │ │ ├── errordescription.json │ │ │ │ │ ├── errorkind.json │ │ │ │ │ ├── errorkind │ │ │ │ │ │ ├── errorresponse.json │ │ │ │ │ │ ├── neithererrornorpayloadreceived.json │ │ │ │ │ │ ├── networkerror.json │ │ │ │ │ │ ├── serializedmessageerror.json │ │ │ │ │ │ ├── unprocessedmessage(_:).json │ │ │ │ │ │ └── upgradeerror(code:).json │ │ │ │ │ ├── failurereason.json │ │ │ │ │ ├── helpanchor.json │ │ │ │ │ ├── kind.json │ │ │ │ │ ├── localizeddescription.json │ │ │ │ │ ├── localizederror-implementations.json │ │ │ │ │ ├── payload.json │ │ │ │ │ └── recoverysuggestion.json │ │ │ │ ├── websockettransport.json │ │ │ │ ├── websockettransport │ │ │ │ │ ├── addapolloclientheaders(to:).json │ │ │ │ │ ├── clientname.json │ │ │ │ │ ├── clientversion.json │ │ │ │ │ ├── closeconnection().json │ │ │ │ │ ├── configuration.json │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── allowsendingduplicates.json │ │ │ │ │ │ ├── clientname.json │ │ │ │ │ │ ├── clientversion.json │ │ │ │ │ │ ├── connectingpayload.json │ │ │ │ │ │ ├── connectoninit.json │ │ │ │ │ │ ├── init(clientname:clientversion:reconnect:reconnectioninterval:allowsendingduplicates:connectoninit:connectingpayload:requestbodycreator:operationmessageidcreator:).json │ │ │ │ │ │ ├── operationmessageidcreator.json │ │ │ │ │ │ ├── reconnect.json │ │ │ │ │ │ ├── reconnectioninterval.json │ │ │ │ │ │ └── requestbodycreator.json │ │ │ │ │ ├── defaultclientname.json │ │ │ │ │ ├── defaultclientversion.json │ │ │ │ │ ├── delegate.json │ │ │ │ │ ├── enablesocksproxy.json │ │ │ │ │ ├── handleconnection().json │ │ │ │ │ ├── headerfieldnameapolloclientname.json │ │ │ │ │ ├── headerfieldnameapolloclientversion.json │ │ │ │ │ ├── init(websocket:store:config:).json │ │ │ │ │ ├── initserver().json │ │ │ │ │ ├── isconnected().json │ │ │ │ │ ├── networktransport-implementations.json │ │ │ │ │ ├── pausewebsocketconnection().json │ │ │ │ │ ├── ping(data:completionhandler:).json │ │ │ │ │ ├── resumewebsocketconnection(autoreconnect:).json │ │ │ │ │ ├── send(operation:cachepolicy:contextidentifier:context:callbackqueue:completionhandler:).json │ │ │ │ │ ├── unsubscribe(_:).json │ │ │ │ │ ├── updateconnectingpayload(_:reconnectifconnected:).json │ │ │ │ │ ├── updateheadervalues(_:reconnectifconnected:).json │ │ │ │ │ ├── websocketclientdelegate-implementations.json │ │ │ │ │ ├── websocketdidconnect(socket:).json │ │ │ │ │ ├── websocketdiddisconnect(socket:error:).json │ │ │ │ │ ├── websocketdidreceivedata(socket:data:).json │ │ │ │ │ └── websocketdidreceivemessage(socket:text:).json │ │ │ │ ├── websockettransportdelegate.json │ │ │ │ └── websockettransportdelegate │ │ │ │ │ ├── websockettransport(_:diddisconnectwitherror:)-19qhf.json │ │ │ │ │ ├── websockettransport(_:diddisconnectwitherror:)-5zb09.json │ │ │ │ │ ├── websockettransport(_:didreceivepingdata:).json │ │ │ │ │ ├── websockettransport(_:didreceivepongdata:).json │ │ │ │ │ ├── websockettransportdidconnect(_:)-3mjf7.json │ │ │ │ │ ├── websockettransportdidconnect(_:)-7piqd.json │ │ │ │ │ ├── websockettransportdidreconnect(_:)-43yds.json │ │ │ │ │ └── websockettransportdidreconnect(_:)-7orv7.json │ │ │ │ └── index.json │ │ ├── developer-og-twitter.jpg │ │ ├── developer-og.jpg │ │ ├── documentation │ │ │ ├── apollo │ │ │ │ ├── apolloapi │ │ │ │ │ ├── index.html │ │ │ │ │ ├── rootselectionset │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── init(data:variables:)-5dodp │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── init(data:variables:)-7xsfq │ │ │ │ │ │ │ └── index.html │ │ │ │ │ └── selection │ │ │ │ │ │ ├── field │ │ │ │ │ │ ├── cachekey(with:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── apolloclient │ │ │ │ │ ├── apolloclienterror │ │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── nouploadtransport │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── apolloclientprotocol-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clearcache(callbackqueue:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fetch(query:cachepolicy:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fetch(query:cachepolicy:contextidentifier:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(networktransport:store:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── init(url:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── perform(mutation:publishresulttostore:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── perform(mutation:publishresulttostore:contextidentifier:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── store │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── subscribe(subscription:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── upload(operation:files:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── watch(query:cachepolicy:context:callbackqueue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── watch(query:cachepolicy:refetchonfailedupdates:context:callbackqueue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── apolloclientprotocol │ │ │ │ │ ├── clearcache(callbackqueue:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fetch(query:cachepolicy:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fetch(query:cachepolicy:contextidentifier:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── perform(mutation:publishresulttostore:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── perform(mutation:publishresulttostore:contextidentifier:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── store │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── subscribe(subscription:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── upload(operation:files:context:queue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── watch(query:cachepolicy:context:callbackqueue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── apolloerrorinterceptor │ │ │ │ │ ├── handleerrorasync(error:chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── apollointerceptor │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── apollorequestbodycreator │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── requestbody(for:sendquerydocument:autopersistquery:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── requestbodycreator-implementations │ │ │ │ │ │ └── index.html │ │ │ │ ├── apollostore │ │ │ │ │ ├── clearcache(callbackqueue:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── error │ │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── notwithinreadtransaction │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(cache:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── load(_:callbackqueue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── publish(records:identifier:callbackqueue:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── readtransaction │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── read(query:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── readobject(oftype:withkey:variables:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── readwritetransaction │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── removeobject(for:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── removeobjects(matching:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── update(_:_:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── updateobject(oftype:withkey:variables:_:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── write(data:for:)-9mzaz │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── write(data:for:)-y0jm │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── write(selectionset:withkey:variables:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── subscribe(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── unsubscribe(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── withinreadtransaction(_:callbackqueue:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── withinreadwritetransaction(_:callbackqueue:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── apollostoresubscriber │ │ │ │ │ ├── index.html │ │ │ │ │ └── store(_:didchangekeys:contextidentifier:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── atomic │ │ │ │ │ ├── increment() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(wrappedvalue:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── mutate(block:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── projectedvalue │ │ │ │ │ │ └── index.html │ │ │ │ │ └── wrappedvalue │ │ │ │ │ │ └── index.html │ │ │ │ ├── automaticpersistedqueryinterceptor │ │ │ │ │ ├── apqerror │ │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── noparsedresponse │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── persistedquerynotfoundforpersistedonlyquery(operationname:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── persistedqueryretryfailed(operationname:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init() │ │ │ │ │ │ └── index.html │ │ │ │ │ └── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── cachekey │ │ │ │ │ └── index.html │ │ │ │ ├── cachepolicy │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── default │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fetchignoringcachecompletely │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fetchignoringcachedata │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── returncachedataandfetch │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── returncachedatadontfetch │ │ │ │ │ │ └── index.html │ │ │ │ │ └── returncachedataelsefetch │ │ │ │ │ │ └── index.html │ │ │ │ ├── cachereadinterceptor │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(store:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── cachewriteinterceptor │ │ │ │ │ ├── cachewriteerror │ │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── noresponsetoparse │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(store:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── store │ │ │ │ │ │ └── index.html │ │ │ │ ├── cancellable │ │ │ │ │ ├── cancel() │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── constants │ │ │ │ │ └── index.html │ │ │ │ ├── defaultinterceptorprovider │ │ │ │ │ ├── additionalerrorinterceptor(for:)-5e08v │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── additionalerrorinterceptor(for:)-5ff01 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(client:shouldinvalidateclientondeinit:store:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── interceptorprovider-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ └── interceptors(for:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── didchangekeysfunc │ │ │ │ │ └── index.html │ │ │ │ ├── emptycancellable │ │ │ │ │ ├── cancel() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── init() │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlerror │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── customstringconvertible-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── description │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── errordescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── extensions │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── failurereason │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── location │ │ │ │ │ │ ├── column │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── line │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── locations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── message │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── path │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pathentry │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── recoverysuggestion │ │ │ │ │ │ └── index.html │ │ │ │ │ └── subscript(_:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlexecutionerror │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── errordescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── failurereason │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pathstring │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── recoverysuggestion │ │ │ │ │ │ └── index.html │ │ │ │ │ └── underlying │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlfile │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── contentlength │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── data │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fieldname │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fileurl │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── generateinputstream() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── graphqlfileerror │ │ │ │ │ │ ├── couldnotcreateinputstream │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── couldnotgetfilesize(fileurl:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(fieldname:originalname:mimetype:data:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── init(fieldname:originalname:mimetype:fileurl:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── mimetype │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── octetstreammimetype │ │ │ │ │ │ └── index.html │ │ │ │ │ └── originalname │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlgettransformer │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── creategeturl() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hash(into:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hashable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── init(body:url:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlhttprequesterror │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── errordescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── failurereason │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── recoverysuggestion │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── serializedbodymessageerror │ │ │ │ │ │ └── index.html │ │ │ │ │ └── serializedqueryparamsmessageerror │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlquerywatcher │ │ │ │ │ ├── cancel() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(client:query:refetchonfailedupdates:context:callbackqueue:resulthandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── query │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── refetch(cachepolicy:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── refetchonfailedupdates │ │ │ │ │ │ └── index.html │ │ │ │ │ └── store(_:didchangekeys:contextidentifier:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlresponse │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hash(into:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hashable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(operation:body:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── parseresult() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── parseresult(withcachepolicy:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── parseresultfast() │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlresult │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asjsondictionary() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── data │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── errors │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── extensions │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(data:extensions:errors:source:dependentkeys:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── source-swift.enum │ │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── server │ │ │ │ │ │ │ └── index.html │ │ │ │ │ └── source-swift.property │ │ │ │ │ │ └── index.html │ │ │ │ ├── graphqlresulthandler │ │ │ │ │ └── index.html │ │ │ │ ├── httprequest │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── addheader(name:value:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── additionalheaders │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cachepolicy │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── context │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── contextidentifier │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── customdebugstringconvertible-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── debugdescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── graphqlendpoint │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hash(into:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(graphqlendpoint:operation:contextidentifier:contenttype:clientname:clientversion:additionalheaders:cachepolicy:context:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── operation │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tourlrequest() │ │ │ │ │ │ └── index.html │ │ │ │ │ └── updatecontenttype(to:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── httpresponse │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cacherecords │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hash(into:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hashable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── httpresponse │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(response:rawdata:parsedresponse:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── legacyresponse │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── parsedresponse │ │ │ │ │ │ └── index.html │ │ │ │ │ └── rawdata │ │ │ │ │ │ └── index.html │ │ │ │ ├── incrementaljsonresponseparsinginterceptor │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── parsingerror │ │ │ │ │ │ ├── couldnotparseincrementaljson(json:) │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── couldnotparsetojson(data:) │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── mismatchedcurrentresulttype │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── noresponsetoparse │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── inmemorynormalizedcache │ │ │ │ │ ├── clear() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(records:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── loadrecords(forkeys:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── merge(records:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── removerecord(for:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── removerecords(matching:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── interceptorprovider │ │ │ │ │ ├── additionalerrorinterceptor(for:)-4nida │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── additionalerrorinterceptor(for:)-5p7fr │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── interceptors(for:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── interceptorrequestchain │ │ │ │ │ ├── additionalerrorhandler │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cancel() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── chainerror │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── invalidindex(chain:index:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── nointerceptors │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── recoverysuggestion │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── unknowninterceptor(id:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── handleerrorasync(_:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(interceptors:callbackqueue:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── iscancelled │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── kickoff(request:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── proceedasync(request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── proceedasync(request:response:interceptor:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── retry(request:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── returnvalueasync(for:value:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── jsonconverter │ │ │ │ │ ├── convert(_:)-29ctk │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── convert(_:)-4jdtv │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── convert(_:)-8r01k │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── jsonrequest │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── autopersistqueries │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── body │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hash(into:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(operation:graphqlendpoint:contextidentifier:clientname:clientversion:additionalheaders:cachepolicy:context:autopersistqueries:usegetforqueries:usegetforpersistedqueryretry:requestbodycreator:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ispersistedqueryretry │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── requestbodycreator │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── serializationformat │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tourlrequest() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── usegetforpersistedqueryretry │ │ │ │ │ │ └── index.html │ │ │ │ │ └── usegetforqueries │ │ │ │ │ │ └── index.html │ │ │ │ ├── jsonresponseparsinginterceptor │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── jsonresponseparsingerror │ │ │ │ │ │ ├── couldnotparsetojson(data:) │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── noresponsetoparse │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ └── index.html │ │ │ │ ├── jsonserializationformat │ │ │ │ │ ├── deserialize(data:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── serialize(value:)-5ftc9 │ │ │ │ │ │ └── index.html │ │ │ │ │ └── serialize(value:)-6eeoc │ │ │ │ │ │ └── index.html │ │ │ │ ├── maxretryinterceptor │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(maxretriesallowed:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── retryerror │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── hitmaxretrycount(count:operationname:) │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ └── index.html │ │ │ │ ├── multipartformdata │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── appendpart(data:name:contenttype:filename:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── appendpart(inputstream:contentlength:name:contenttype:filename:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── appendpart(string:name:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── boundary │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── encode() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hash(into:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hashable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init() │ │ │ │ │ │ └── index.html │ │ │ │ │ └── init(boundary:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── multipartresponseparsinginterceptor │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── parsingerror │ │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── cannotparseresponse │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── cannotparseresponsedata │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── invalidmultipartprotocol │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── missingmultipartboundary │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── noresponsetoparse │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ └── index.html │ │ │ │ ├── networkfetchinterceptor │ │ │ │ │ ├── cancel() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(client:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── networktransport │ │ │ │ │ ├── addapolloclientheaders(to:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clientname-3npzv │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clientname-689z0 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clientversion-8yya │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clientversion-9p2ue │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── defaultclientname │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── defaultclientversion │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── headerfieldnameapolloclientname │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── headerfieldnameapolloclientversion │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── send(operation:cachepolicy:contextidentifier:context:callbackqueue:completionhandler:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── normalizedcache │ │ │ │ │ ├── clear() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── loadrecords(forkeys:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── merge(records:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── removerecord(for:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── removerecords(matching:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── pathcomponent │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── field(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── record │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── customstringconvertible-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── description │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fields-swift.property │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fields-swift.typealias │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(key:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── key │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── subscript(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── value │ │ │ │ │ │ └── index.html │ │ │ │ ├── recordset │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clear() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── customdebugstringconvertible-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── customplaygrounddisplayconvertible-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── customstringconvertible-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── debugdescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── description │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(dictionaryliteral:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── init(records:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── insert(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── insert(contentsof:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── isempty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── keys │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── merge(record:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── merge(records:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── playgrounddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── removerecord(for:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── removerecords(matching:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── storage │ │ │ │ │ │ └── index.html │ │ │ │ │ └── subscript(_:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── requestbodycreator │ │ │ │ │ ├── index.html │ │ │ │ │ ├── requestbody(for:sendquerydocument:autopersistquery:)-1ddq1 │ │ │ │ │ │ └── index.html │ │ │ │ │ └── requestbody(for:sendquerydocument:autopersistquery:)-79e0u │ │ │ │ │ │ └── index.html │ │ │ │ ├── requestchain │ │ │ │ │ ├── cancel() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── handleerrorasync(_:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iscancelled │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── kickoff(request:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── proceedasync(request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── proceedasync(request:response:interceptor:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── retry(request:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── returnvalueasync(for:value:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── requestchainnetworktransport │ │ │ │ │ ├── addapolloclientheaders(to:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── additionalheaders │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── autopersistqueries │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clientname │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clientversion │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── constructrequest(for:cachepolicy:contextidentifier:context:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── constructuploadrequest(for:with:context:manualboundary:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── defaultclientname │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── defaultclientversion │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── endpointurl │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── headerfieldnameapolloclientname │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── headerfieldnameapolloclientversion │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(interceptorprovider:endpointurl:additionalheaders:autopersistqueries:requestbodycreator:usegetforqueries:usegetforpersistedqueryretry:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── networktransport-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── requestbodycreator │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── send(operation:cachepolicy:contextidentifier:context:callbackqueue:completionhandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── upload(operation:files:context:callbackqueue:completionhandler:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── uploadingnetworktransport-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── usegetforpersistedqueryretry │ │ │ │ │ │ └── index.html │ │ │ │ │ └── usegetforqueries │ │ │ │ │ │ └── index.html │ │ │ │ ├── requestcontext │ │ │ │ │ └── index.html │ │ │ │ ├── requestcontexttimeoutconfigurable │ │ │ │ │ ├── index.html │ │ │ │ │ └── requesttimeout │ │ │ │ │ │ └── index.html │ │ │ │ ├── responsecodeinterceptor │ │ │ │ │ ├── id │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── interceptasync(chain:request:response:completion:) │ │ │ │ │ │ └── index.html │ │ │ │ │ └── responsecodeerror │ │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── errordescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── failurereason │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── graphqlerror │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── helpanchor │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── invalidresponsecode(response:rawdata:) │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── recoverysuggestion │ │ │ │ │ │ └── index.html │ │ │ │ ├── responsepath │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── +(_:_:)-33jrx │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── +(_:_:)-4k3co │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── +(_:_:)-4qdcw │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── append(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── appending(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── customstringconvertible-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── description │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hash(into:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hashable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── init(arrayliteral:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── isempty │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── joined │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── key │ │ │ │ │ │ └── index.html │ │ │ │ │ └── toarray() │ │ │ │ │ │ └── index.html │ │ │ │ ├── rootselectionsetinitializeerror │ │ │ │ │ ├── !=(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── equatable-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── error-implementations │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hasnonhashablevalue │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── localizeddescription │ │ │ │ │ │ └── index.html │ │ │ │ ├── swift │ │ │ │ │ ├── dictionary │ │ │ │ │ │ ├── +=(_:_:) │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── taskdata │ │ │ │ │ ├── completionblock │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── rawcompletion │ │ │ │ │ │ └── index.html │ │ │ │ ├── unzip(_:)-1e6mu │ │ │ │ │ └── index.html │ │ │ │ ├── unzip(_:)-33e77 │ │ │ │ │ └── index.html │ │ │ │ ├── uploadingnetworktransport │ │ │ │ │ ├── index.html │ │ │ │ │ └── upload(operation:files:context:callbackqueue:completionhandler:) │ │ │ │ │ │ └── index.html │ │ │ │ ├── uploadrequest │ │ │ │ │ ├── ==(_:_:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── files │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── hash(into:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(graphqlendpoint:operation:clientname:clientversion:additionalheaders:files:manualboundary:context:requestbodycreator:) │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── manualboundary │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── requestbodycreator │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── requestmultipartformdata() │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── serializationformat │ │ │ │ │ │ └── index.html │ │ │ │ │ └── tourlrequest() │ │ │ │ │ │ └── index.html │ │ │ │ └── urlsessionclient │ │ │ │ │ ├── cancel(task:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── clear(task:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── clearalltasks() │ │ │ │ │ └── index.html │ │ │ │ │ ├── completion │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init(sessionconfiguration:callbackqueue:sessiondescription:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── invalidate() │ │ │ │ │ └── index.html │ │ │ │ │ ├── rawcompletion │ │ │ │ │ └── index.html │ │ │ │ │ ├── sendrequest(_:rawtaskcompletionhandler:completion:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── sendrequest(_:taskdescription:rawtaskcompletionhandler:completion:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── session │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:datatask:didbecome:)-17qvj │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:datatask:didbecome:)-1gjp0 │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:datatask:didreceive:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:datatask:didreceive:completionhandler:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:datatask:willcacheresponse:completionhandler:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:didbecomeinvalidwitherror:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:didreceive:completionhandler:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:task:didcompletewitherror:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:task:didfinishcollecting:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:task:didreceive:completionhandler:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:task:didsendbodydata:totalbytessent:totalbytesexpectedtosend:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:task:neednewbodystream:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:task:willbegindelayedrequest:completionhandler:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:task:willperformhttpredirection:newrequest:completionhandler:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── urlsession(_:taskiswaitingforconnectivity:) │ │ │ │ │ └── index.html │ │ │ │ │ └── urlsessionclienterror │ │ │ │ │ ├── cannotparseboundarydata │ │ │ │ │ └── index.html │ │ │ │ │ ├── dataforrequestnotfound(request:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── error-implementations │ │ │ │ │ └── index.html │ │ │ │ │ ├── errordescription │ │ │ │ │ └── index.html │ │ │ │ │ ├── failurereason │ │ │ │ │ └── index.html │ │ │ │ │ ├── helpanchor │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── localizeddescription │ │ │ │ │ └── index.html │ │ │ │ │ ├── localizederror-implementations │ │ │ │ │ └── index.html │ │ │ │ │ ├── missingmultipartboundary │ │ │ │ │ └── index.html │ │ │ │ │ ├── networkerror(data:response:underlying:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── nohttpresponse(request:) │ │ │ │ │ └── index.html │ │ │ │ │ ├── recoverysuggestion │ │ │ │ │ └── index.html │ │ │ │ │ ├── sessionbecameinvalidwithoutunderlyingerror │ │ │ │ │ └── index.html │ │ │ │ │ └── sessioninvalidated │ │ │ │ │ └── index.html │ │ │ └── index │ │ │ │ └── index.html │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── img │ │ │ ├── added-icon.d6f7e47d.svg │ │ │ ├── deprecated-icon.015b4f17.svg │ │ │ ├── modified-icon.f496e73d.svg │ │ │ └── no-image@2x.df2a0a50.png │ │ ├── index.html │ │ ├── index │ │ │ └── index.json │ │ ├── js │ │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ │ ├── chunk-vendors.b24b7aaa.js │ │ │ ├── documentation-topic.e0115a2a.js │ │ │ ├── documentation-topic~topic~tutorials-overview.cfd1901e.js │ │ │ ├── highlight-js-bash.1b52852f.js │ │ │ ├── highlight-js-c.d1db3f17.js │ │ │ ├── highlight-js-cpp.eaddddbe.js │ │ │ ├── highlight-js-css.75eab1fe.js │ │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ │ ├── highlight-js-diff.62d66733.js │ │ │ ├── highlight-js-http.163e45b6.js │ │ │ ├── highlight-js-java.8326d9d8.js │ │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ │ ├── highlight-js-json.471128d2.js │ │ │ ├── highlight-js-llvm.6100b125.js │ │ │ ├── highlight-js-markdown.90077643.js │ │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ │ ├── highlight-js-perl.757d7b6f.js │ │ │ ├── highlight-js-php.cc8d6c27.js │ │ │ ├── highlight-js-python.c214ed92.js │ │ │ ├── highlight-js-ruby.f889d392.js │ │ │ ├── highlight-js-scss.62ee18da.js │ │ │ ├── highlight-js-shell.dd7f411f.js │ │ │ ├── highlight-js-swift.84f3e88c.js │ │ │ ├── highlight-js-xml.9c3688c7.js │ │ │ ├── index.030c4062.js │ │ │ ├── topic.cdcef8eb.js │ │ │ └── tutorials-overview.9232fc17.js │ │ ├── metadata.json │ │ └── theme-settings.json │ └── netlify.toml ├── renderer │ ├── .browserslistrc │ ├── .editorconfig │ ├── .env.development │ ├── .eslintrc.js │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── BUG_REPORT.yml │ │ │ ├── FEATURE_REQUEST.yml │ │ │ └── config.yml │ │ └── pull_request_template.md │ ├── .gitignore │ ├── .nvmrc │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── NOTICE.txt │ ├── README.md │ ├── SwiftDocCRender.docc │ │ ├── Info.plist │ │ ├── SwiftDocCRender.md │ │ └── contributing │ │ │ └── Internals.md │ ├── app │ │ ├── index.html │ │ ├── main.js │ │ └── public │ │ │ ├── developer-og-twitter.jpg │ │ │ ├── developer-og.jpg │ │ │ ├── favicon.ico │ │ │ ├── favicon.svg │ │ │ └── theme-settings.json │ ├── babel.config.js │ ├── bin │ │ ├── baseUrlPlaceholder.js │ │ ├── check-source │ │ ├── environment │ │ ├── rundocc │ │ └── transformIndex.js │ ├── build-script-helper.py │ ├── dist │ │ ├── css │ │ │ ├── documentation-topic.0ad29f97.css │ │ │ ├── documentation-topic~topic~tutorials-overview.d890b221.css │ │ │ ├── index.5bae6993.css │ │ │ ├── topic.f6469788.css │ │ │ └── tutorials-overview.9b749a4d.css │ │ ├── developer-og-twitter.jpg │ │ ├── developer-og.jpg │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── img │ │ │ ├── added-icon.d6f7e47d.svg │ │ │ ├── deprecated-icon.015b4f17.svg │ │ │ ├── modified-icon.f496e73d.svg │ │ │ └── no-image@2x.df2a0a50.png │ │ ├── index-template.html │ │ ├── index.html │ │ ├── js │ │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ │ ├── chunk-vendors.b24b7aaa.js │ │ │ ├── documentation-topic.e0115a2a.js │ │ │ ├── documentation-topic~topic~tutorials-overview.cfd1901e.js │ │ │ ├── highlight-js-bash.1b52852f.js │ │ │ ├── highlight-js-c.d1db3f17.js │ │ │ ├── highlight-js-cpp.eaddddbe.js │ │ │ ├── highlight-js-css.75eab1fe.js │ │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ │ ├── highlight-js-diff.62d66733.js │ │ │ ├── highlight-js-http.163e45b6.js │ │ │ ├── highlight-js-java.8326d9d8.js │ │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ │ ├── highlight-js-json.471128d2.js │ │ │ ├── highlight-js-llvm.6100b125.js │ │ │ ├── highlight-js-markdown.90077643.js │ │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ │ ├── highlight-js-perl.757d7b6f.js │ │ │ ├── highlight-js-php.cc8d6c27.js │ │ │ ├── highlight-js-python.c214ed92.js │ │ │ ├── highlight-js-ruby.f889d392.js │ │ │ ├── highlight-js-scss.62ee18da.js │ │ │ ├── highlight-js-shell.dd7f411f.js │ │ │ ├── highlight-js-swift.84f3e88c.js │ │ │ ├── highlight-js-xml.9c3688c7.js │ │ │ ├── index.030c4062.js │ │ │ ├── topic.cdcef8eb.js │ │ │ └── tutorials-overview.9232fc17.js │ │ └── theme-settings.json │ ├── index.js │ ├── jest.config.js │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── global-elements │ │ │ │ └── noscript.html │ │ │ └── img │ │ │ │ ├── icons │ │ │ │ ├── added-icon.svg │ │ │ │ ├── deprecated-icon.svg │ │ │ │ └── modified-icon.svg │ │ │ │ └── no-image@2x.png │ │ ├── components │ │ │ ├── AdjustableSidebarWidth.vue │ │ │ ├── Article.vue │ │ │ ├── Article │ │ │ │ ├── Assessments.vue │ │ │ │ ├── Body.vue │ │ │ │ ├── BodyContent.vue │ │ │ │ ├── CallToAction.vue │ │ │ │ ├── ContentNode.vue │ │ │ │ ├── Hero.vue │ │ │ │ └── Layouts │ │ │ │ │ ├── Columns.vue │ │ │ │ │ ├── ContentAndMedia.vue │ │ │ │ │ └── FullWidth.vue │ │ │ ├── Asset.vue │ │ │ ├── Badge.vue │ │ │ ├── BaseDropdown.vue │ │ │ ├── BreakpointEmitter.vue │ │ │ ├── ButtonLink.vue │ │ │ ├── CallToAction.vue │ │ │ ├── CallToActionButton.vue │ │ │ ├── ColorSchemeToggle.vue │ │ │ ├── ContentNode.vue │ │ │ ├── ContentNode │ │ │ │ ├── Aside.vue │ │ │ │ ├── CodeListing.vue │ │ │ │ ├── CodeListingFileIcon.vue │ │ │ │ ├── CodeListingFilename.vue │ │ │ │ ├── CodeVoice.vue │ │ │ │ ├── CollapsibleCodeListing.vue │ │ │ │ ├── DictionaryExample.vue │ │ │ │ ├── EndpointExample.vue │ │ │ │ ├── Figure.vue │ │ │ │ ├── FigureCaption.vue │ │ │ │ ├── InlineImage.vue │ │ │ │ ├── MobileCodeListing.vue │ │ │ │ ├── Reference.vue │ │ │ │ ├── ReferenceExternal.vue │ │ │ │ ├── ReferenceInternal.vue │ │ │ │ ├── ReferenceInternalSymbol.vue │ │ │ │ ├── StrikeThrough.vue │ │ │ │ └── Table.vue │ │ │ ├── DestinationDataProvider.vue │ │ │ ├── DocumentationTopic.vue │ │ │ ├── DocumentationTopic │ │ │ │ ├── BetaLegalText.vue │ │ │ │ ├── ConditionalConstraints.vue │ │ │ │ ├── ContentNode.vue │ │ │ │ ├── ContentTable.vue │ │ │ │ ├── ContentTableSection.vue │ │ │ │ ├── DecoratedTopicTitle.vue │ │ │ │ ├── DefaultImplementations.vue │ │ │ │ ├── Description │ │ │ │ │ ├── Abstract.vue │ │ │ │ │ └── RequirementMetadata.vue │ │ │ │ ├── DocumentationHero.vue │ │ │ │ ├── DocumentationNav.vue │ │ │ │ ├── DocumentationNav │ │ │ │ │ ├── Hierarchy.vue │ │ │ │ │ ├── HierarchyCollapsedItems.vue │ │ │ │ │ ├── HierarchyItem.vue │ │ │ │ │ └── LanguageToggle.vue │ │ │ │ ├── OnThisPageSection.vue │ │ │ │ ├── PrimaryContent.vue │ │ │ │ ├── PrimaryContent │ │ │ │ │ ├── Declaration.vue │ │ │ │ │ ├── DeclarationDiff.vue │ │ │ │ │ ├── DeclarationGroup.vue │ │ │ │ │ ├── DeclarationSource.vue │ │ │ │ │ ├── DeclarationToken.vue │ │ │ │ │ ├── DeclarationToken │ │ │ │ │ │ ├── ChangedToken.vue │ │ │ │ │ │ ├── RawText.vue │ │ │ │ │ │ ├── SyntaxToken.vue │ │ │ │ │ │ └── TypeIdentifierLink.vue │ │ │ │ │ ├── DeclarationTokenGroup.vue │ │ │ │ │ ├── GenericContent.vue │ │ │ │ │ ├── ParameterAttributes.vue │ │ │ │ │ ├── ParameterMetaAttribute.vue │ │ │ │ │ ├── Parameters.vue │ │ │ │ │ ├── ParametersTable.vue │ │ │ │ │ ├── PossibleValues.vue │ │ │ │ │ ├── PossiblyChangedMimetype.vue │ │ │ │ │ ├── PossiblyChangedTextAttribute.vue │ │ │ │ │ ├── PossiblyChangedType.vue │ │ │ │ │ ├── PropertyListKeyDetails.vue │ │ │ │ │ ├── PropertyListKeyType.vue │ │ │ │ │ ├── PropertyTable.vue │ │ │ │ │ ├── RenderChanged.vue │ │ │ │ │ ├── RestBody.vue │ │ │ │ │ ├── RestEndpoint.vue │ │ │ │ │ ├── RestParameters.vue │ │ │ │ │ └── RestResponses.vue │ │ │ │ ├── Relationships.vue │ │ │ │ ├── RelationshipsList.vue │ │ │ │ ├── SeeAlso.vue │ │ │ │ ├── Summary │ │ │ │ │ ├── Availability.vue │ │ │ │ │ ├── AvailabilityRange.vue │ │ │ │ │ ├── LanguageSwitcher.vue │ │ │ │ │ ├── LanguageSwitcherLink.vue │ │ │ │ │ ├── List.vue │ │ │ │ │ ├── ListItem.vue │ │ │ │ │ ├── OnThisPageNav.vue │ │ │ │ │ ├── Section.vue │ │ │ │ │ └── Title.vue │ │ │ │ ├── Title.vue │ │ │ │ ├── TopicLinkBlockIcon.vue │ │ │ │ ├── Topics.vue │ │ │ │ ├── TopicsLinkBlock.vue │ │ │ │ └── TopicsTable.vue │ │ │ ├── DropdownCustom.vue │ │ │ ├── Filter │ │ │ │ ├── FilterInput.vue │ │ │ │ ├── Tag.vue │ │ │ │ └── TagList.vue │ │ │ ├── Footer.vue │ │ │ ├── GenericError.vue │ │ │ ├── GenericModal.vue │ │ │ ├── GridColumn.vue │ │ │ ├── GridRow.vue │ │ │ ├── Headline.vue │ │ │ ├── Icons │ │ │ │ ├── APIReferenceIcon.vue │ │ │ │ ├── ArticleIcon.vue │ │ │ │ ├── CheckCircleIcon.vue │ │ │ │ ├── ChevronIcon.vue │ │ │ │ ├── ChevronRoundedIcon.vue │ │ │ │ ├── ClearRoundedIcon.vue │ │ │ │ ├── CloseIcon.vue │ │ │ │ ├── CollectionIcon.vue │ │ │ │ ├── CurlyBracketsIcon.vue │ │ │ │ ├── DiagonalArrowIcon.vue │ │ │ │ ├── DocumentIcon.vue │ │ │ │ ├── DownloadIcon.vue │ │ │ │ ├── EllipsisIcon.vue │ │ │ │ ├── EndpointIcon.vue │ │ │ │ ├── FilterIcon.vue │ │ │ │ ├── ForumIcon.vue │ │ │ │ ├── GenericFileIcon.vue │ │ │ │ ├── InlineChevronDownCircleIcon.vue │ │ │ │ ├── InlineChevronDownIcon.vue │ │ │ │ ├── InlineChevronRightIcon.vue │ │ │ │ ├── InlineCloseIcon.vue │ │ │ │ ├── InlineDownloadIcon.vue │ │ │ │ ├── InlineMinusCircleSolidIcon.vue │ │ │ │ ├── InlinePlusCircleIcon.vue │ │ │ │ ├── InlinePlusCircleSolidIcon.vue │ │ │ │ ├── InlineReplayIcon.vue │ │ │ │ ├── MagnifierIcon.vue │ │ │ │ ├── PathIcon.vue │ │ │ │ ├── PlayIcon.vue │ │ │ │ ├── ResetCircleIcon.vue │ │ │ │ ├── SearchIcon.vue │ │ │ │ ├── SidenavIcon.vue │ │ │ │ ├── SingleLetterSymbolIcon.vue │ │ │ │ ├── SpinnerIcon.vue │ │ │ │ ├── SwiftFileIcon.vue │ │ │ │ ├── TechnologyIcon.vue │ │ │ │ ├── TimerIcon.vue │ │ │ │ ├── TopicFuncIcon.vue │ │ │ │ ├── TopicFuncOpIcon.vue │ │ │ │ ├── TopicSubscriptIcon.vue │ │ │ │ ├── TutorialIcon.vue │ │ │ │ ├── TwoLetterSymbolIcon.vue │ │ │ │ └── XcodeIcon.vue │ │ │ ├── ImageAsset.vue │ │ │ ├── InitialLoadingPlaceholder.vue │ │ │ ├── LinkableElement.vue │ │ │ ├── NavBase.vue │ │ │ ├── NavMenuItem.vue │ │ │ ├── NavMenuItemBase.vue │ │ │ ├── NavMenuItems.vue │ │ │ ├── NavMenuLink.vue │ │ │ ├── NavTitleContainer.vue │ │ │ ├── Navigator.vue │ │ │ ├── Navigator │ │ │ │ ├── HighlightMatches.vue │ │ │ │ ├── NavigatorCard.vue │ │ │ │ ├── NavigatorCardInner.vue │ │ │ │ ├── NavigatorCardItem.vue │ │ │ │ ├── NavigatorDataProvider.vue │ │ │ │ ├── NavigatorLeafIcon.vue │ │ │ │ ├── QuickNavigationHighlighter.vue │ │ │ │ └── QuickNavigationModal.vue │ │ │ ├── ReferenceUrlProvider.vue │ │ │ ├── ReplayableVideoAsset.vue │ │ │ ├── SVGIcon.vue │ │ │ ├── Tabnav.vue │ │ │ ├── TabnavItem.vue │ │ │ ├── TransitionExpand.vue │ │ │ ├── Tutorial.vue │ │ │ ├── Tutorial │ │ │ │ ├── Assessments.vue │ │ │ │ ├── Assessments │ │ │ │ │ └── Quiz.vue │ │ │ │ ├── AssessmentsProgress.vue │ │ │ │ ├── BackgroundTheme.vue │ │ │ │ ├── CallToAction.vue │ │ │ │ ├── CodePreview.vue │ │ │ │ ├── CodeTheme.vue │ │ │ │ ├── Hero.vue │ │ │ │ ├── HeroMetadata.vue │ │ │ │ ├── MobileCodePreview.vue │ │ │ │ ├── MobileCodePreviewToggle.vue │ │ │ │ ├── NavigationBar.vue │ │ │ │ ├── NavigationBar │ │ │ │ │ ├── MobileDropdown.vue │ │ │ │ │ ├── PrimaryDropdown.vue │ │ │ │ │ └── SecondaryDropdown.vue │ │ │ │ ├── Section.vue │ │ │ │ ├── SectionIntro.vue │ │ │ │ ├── SectionList.vue │ │ │ │ ├── SectionSteps.vue │ │ │ │ └── Step.vue │ │ │ ├── TutorialsOverview.vue │ │ │ ├── TutorialsOverview │ │ │ │ ├── Chapter.vue │ │ │ │ ├── ChapterTopicList.vue │ │ │ │ ├── Hero.vue │ │ │ │ ├── LearningPath.vue │ │ │ │ ├── Nav.vue │ │ │ │ ├── Resources.vue │ │ │ │ ├── ResourcesTile.vue │ │ │ │ ├── ResourcesTileGroup.vue │ │ │ │ ├── TutorialsNavigation.vue │ │ │ │ ├── TutorialsNavigationLink.vue │ │ │ │ ├── TutorialsNavigationList.vue │ │ │ │ ├── TutorialsNavigationMenu.vue │ │ │ │ ├── Volume.vue │ │ │ │ └── VolumeName.vue │ │ │ ├── VideoAsset.vue │ │ │ └── WordBreak.vue │ │ ├── constants │ │ │ ├── Changes.js │ │ │ ├── ColorScheme.js │ │ │ ├── HeroColors.js │ │ │ ├── Language.js │ │ │ ├── SymbolKind.js │ │ │ ├── TechnologiesQueryParams.js │ │ │ ├── TopicTypes.js │ │ │ ├── multipleLines.js │ │ │ ├── nav.js │ │ │ ├── roles.js │ │ │ ├── router.js │ │ │ └── sidebar.js │ │ ├── directives │ │ │ ├── hide.js │ │ │ └── index.js │ │ ├── errors │ │ │ ├── FetchError.js │ │ │ └── RedirectError.js │ │ ├── mixins │ │ │ ├── __mocks__ │ │ │ │ └── onPageLoadScrollToFragment.js │ │ │ ├── apiChangesHelpers.js │ │ │ ├── apiChangesObserving.js │ │ │ ├── apiChangesProvider.js │ │ │ ├── handleScrollbar.js │ │ │ ├── imageAsset.js │ │ │ ├── isClientMobile.js │ │ │ ├── keyboardNavigation.js │ │ │ ├── metadata.js │ │ │ ├── multipleSelection.js │ │ │ ├── onIntersect.js │ │ │ ├── onIntersectViewport.js │ │ │ ├── onPageLoadScrollToFragment.js │ │ │ ├── performanceMetrics.js │ │ │ └── scrollToElement.js │ │ ├── plugins │ │ │ ├── CommunicationBridge.js │ │ │ └── CustomComponents.js │ │ ├── routes.js │ │ ├── setup-utils │ │ │ ├── SwiftDocCRenderPlugin.js │ │ │ ├── SwiftDocCRenderRouter.js │ │ │ ├── license-header-built-files.js │ │ │ ├── theme-build-utils.js │ │ │ └── vue-config-utils.js │ │ ├── stores │ │ │ ├── ApiChangesStoreBase.js │ │ │ ├── AppStore.js │ │ │ ├── CodeThemeStore.js │ │ │ ├── DocumentationTopicStore.js │ │ │ ├── QuickNavigationStore.js │ │ │ ├── TopicStore.js │ │ │ └── TutorialsOverviewStore.js │ │ ├── styles │ │ │ ├── _base.scss │ │ │ ├── _core.scss │ │ │ ├── _theme_base.scss │ │ │ ├── _theme_core.scss │ │ │ ├── _theme_vars.scss │ │ │ ├── base │ │ │ │ ├── _accessibility.scss │ │ │ │ ├── _changes.scss │ │ │ │ ├── _colors.scss │ │ │ │ ├── _reset.scss │ │ │ │ ├── _syntax.scss │ │ │ │ └── _typography.scss │ │ │ └── core │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _changes.scss │ │ │ │ ├── _colors.scss │ │ │ │ ├── _helpers.scss │ │ │ │ ├── _maps.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _selectors.scss │ │ │ │ ├── _syntax.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── _vars.scss │ │ │ │ ├── colors │ │ │ │ ├── _dark.scss │ │ │ │ └── _light.scss │ │ │ │ └── typography │ │ │ │ ├── _font-attribute-utils.scss │ │ │ │ ├── _font-attributes.scss │ │ │ │ ├── _font-style-utils.scss │ │ │ │ └── _font-styles.scss │ │ ├── utils │ │ │ ├── FocusTrap.js │ │ │ ├── TabManager.js │ │ │ ├── __mocks__ │ │ │ │ ├── FocusTrap.js │ │ │ │ ├── debounce.js │ │ │ │ └── theme-settings.js │ │ │ ├── arrays.js │ │ │ ├── assets.js │ │ │ ├── breakpoints.js │ │ │ ├── changeElementVOVisibility.js │ │ │ ├── clipboard.js │ │ │ ├── custom-highlight-lang │ │ │ │ ├── .gitkeep │ │ │ │ ├── markdown.js │ │ │ │ └── swift.js │ │ │ ├── data.js │ │ │ ├── debounce.js │ │ │ ├── get.js │ │ │ ├── indentation.js │ │ │ ├── input-helper.js │ │ │ ├── json-patch.js │ │ │ ├── json-pointer.js │ │ │ ├── loading.js │ │ │ ├── metadata.js │ │ │ ├── multipleLines.js │ │ │ ├── router-utils.js │ │ │ ├── schema-version-check.js │ │ │ ├── scroll-lock.js │ │ │ ├── search-utils.js │ │ │ ├── settings.js │ │ │ ├── storage.js │ │ │ ├── strings.js │ │ │ ├── symbols.js │ │ │ ├── syntax-highlight.js │ │ │ ├── theme-settings.js │ │ │ ├── themes.js │ │ │ ├── throttle.js │ │ │ └── url-helper.js │ │ └── views │ │ │ ├── DocumentationTopic.vue │ │ │ ├── NotFound.vue │ │ │ ├── ServerError.vue │ │ │ ├── Topic.vue │ │ │ └── TutorialsOverview.vue │ ├── test-utils.js │ ├── tests │ │ └── unit │ │ │ ├── App.spec.js │ │ │ ├── components │ │ │ ├── AdjustableSidebarWidth.spec.js │ │ │ ├── Article.spec.js │ │ │ ├── Article │ │ │ │ ├── Assessments.spec.js │ │ │ │ ├── Body.spec.js │ │ │ │ ├── BodyContent.spec.js │ │ │ │ ├── CallToAction.spec.js │ │ │ │ ├── ContentNode.spec.js │ │ │ │ ├── Hero.spec.js │ │ │ │ └── Layouts │ │ │ │ │ ├── Columns.spec.js │ │ │ │ │ ├── ContentAndMedia.spec.js │ │ │ │ │ └── FullWidth.spec.js │ │ │ ├── Asset.spec.js │ │ │ ├── Badge.spec.js │ │ │ ├── BaseDropdown.spec.js │ │ │ ├── BreakpointEmitter.spec.js │ │ │ ├── ButtonLink.spec.js │ │ │ ├── CallToAction.spec.js │ │ │ ├── CallToActionButton.spec.js │ │ │ ├── ColorSchemeToggle.spec.js │ │ │ ├── ContentNode.spec.js │ │ │ ├── ContentNode │ │ │ │ ├── Aside.spec.js │ │ │ │ ├── CodeListing.spec.js │ │ │ │ ├── CodeListingFileIcon.spec.js │ │ │ │ ├── CodeListingFilename.spec.js │ │ │ │ ├── CodeVoice.spec.js │ │ │ │ ├── CollapsibleCodeListing.spec.js │ │ │ │ ├── DictionaryExample.spec.js │ │ │ │ ├── EndpointExample.spec.js │ │ │ │ ├── Figure.spec.js │ │ │ │ ├── FigureCaption.spec.js │ │ │ │ ├── InlineImage.spec.js │ │ │ │ ├── MobileCodeListing.spec.js │ │ │ │ ├── Reference.spec.js │ │ │ │ ├── ReferenceExternal.spec.js │ │ │ │ ├── ReferenceInternal.spec.js │ │ │ │ ├── ReferenceInternalSymbol.spec.js │ │ │ │ ├── StrikeThrough.spec.js │ │ │ │ └── Table.spec.js │ │ │ ├── DestinationDataProvider.spec.js │ │ │ ├── DocumentationTopic.spec.js │ │ │ ├── DocumentationTopic │ │ │ │ ├── BetaLegalText.spec.js │ │ │ │ ├── ConditionalConstraints.spec.js │ │ │ │ ├── ContentNode.spec.js │ │ │ │ ├── ContentTable.spec.js │ │ │ │ ├── ContentTableSection.spec.js │ │ │ │ ├── DecoratedTopicTitle.spec.js │ │ │ │ ├── DefaultImplementations.spec.js │ │ │ │ ├── Description │ │ │ │ │ ├── Abstract.spec.js │ │ │ │ │ └── RequirementMetadata.spec.js │ │ │ │ ├── DocumentationHero.spec.js │ │ │ │ ├── DocumentationNav.spec.js │ │ │ │ ├── DocumentationNav │ │ │ │ │ ├── HierarchyCollapsedItems.spec.js │ │ │ │ │ ├── HierarchyItem.spec.js │ │ │ │ │ └── LanguageToggle.spec.js │ │ │ │ ├── Hierarchy.spec.js │ │ │ │ ├── OnThisPageSection.spec.js │ │ │ │ ├── PrimaryContent.spec.js │ │ │ │ ├── PrimaryContent │ │ │ │ │ ├── Declaration.spec.js │ │ │ │ │ ├── DeclarationDiff.spec.js │ │ │ │ │ ├── DeclarationGroup.spec.js │ │ │ │ │ ├── DeclarationSource.spec.js │ │ │ │ │ ├── DeclarationToken.spec.js │ │ │ │ │ ├── DeclarationToken │ │ │ │ │ │ ├── ChangedToken.spec.js │ │ │ │ │ │ ├── RawText.spec.js │ │ │ │ │ │ ├── SyntaxToken.spec.js │ │ │ │ │ │ └── TypeIdentifierLink.spec.js │ │ │ │ │ ├── DeclarationTokenGroup.spec.js │ │ │ │ │ ├── GenericContent.spec.js │ │ │ │ │ ├── ParameterAttributes.spec.js │ │ │ │ │ ├── ParameterMetaAttribute.spec.js │ │ │ │ │ ├── Parameters.spec.js │ │ │ │ │ ├── ParametersTable.spec.js │ │ │ │ │ ├── PossibleValues.spec.js │ │ │ │ │ ├── PossiblyChangedMimetype.spec.js │ │ │ │ │ ├── PossiblyChangedTextAttribute.spec.js │ │ │ │ │ ├── PossiblyChangedType.spec.js │ │ │ │ │ ├── PropertyListKeyDetails.spec.js │ │ │ │ │ ├── PropertyListKeyType.spec.js │ │ │ │ │ ├── PropertyTable.spec.js │ │ │ │ │ ├── RenderChanged.spec.js │ │ │ │ │ ├── RestBody.spec.js │ │ │ │ │ ├── RestEndpoint.spec.js │ │ │ │ │ ├── RestParameters.spec.js │ │ │ │ │ └── RestResponses.spec.js │ │ │ │ ├── Relationships.spec.js │ │ │ │ ├── RelationshipsList.spec.js │ │ │ │ ├── SeeAlso.spec.js │ │ │ │ ├── Summary │ │ │ │ │ ├── Availability.spec.js │ │ │ │ │ ├── AvailabilityRange.spec.js │ │ │ │ │ ├── LanguageSwitcher.spec.js │ │ │ │ │ ├── LanguageSwitcherLink.spec.js │ │ │ │ │ ├── List.spec.js │ │ │ │ │ ├── ListItem.spec.js │ │ │ │ │ ├── OnThisPageNav.spec.js │ │ │ │ │ ├── Section.spec.js │ │ │ │ │ └── Title.spec.js │ │ │ │ ├── Title.spec.js │ │ │ │ ├── Topics.spec.js │ │ │ │ ├── TopicsLinkBlock.spec.js │ │ │ │ └── TopicsTable.spec.js │ │ │ ├── DropdownCustom.spec.js │ │ │ ├── Filter │ │ │ │ ├── FilterInput.spec.js │ │ │ │ ├── Tag.spec.js │ │ │ │ └── TagList.spec.js │ │ │ ├── Footer.spec.js │ │ │ ├── GenericError.spec.js │ │ │ ├── GenericModal.spec.js │ │ │ ├── GridColumn.spec.js │ │ │ ├── GridRow.spec.js │ │ │ ├── Headline.spec.js │ │ │ ├── ImageAsset.spec.js │ │ │ ├── InitialLoadingPlaceholder.spec.js │ │ │ ├── LinkableElement.spec.js │ │ │ ├── NavBase.spec.js │ │ │ ├── NavMenuItem.spec.js │ │ │ ├── NavMenuItemBase.spec.js │ │ │ ├── NavMenuItems.spec.js │ │ │ ├── NavMenuLink.spec.js │ │ │ ├── NavTitleContainer.spec.js │ │ │ ├── Navigator.spec.js │ │ │ ├── Navigator │ │ │ │ ├── HighlightMatches.spec.js │ │ │ │ ├── NavigatorCard.spec.js │ │ │ │ ├── NavigatorCardInner.spec.js │ │ │ │ ├── NavigatorCardItem.spec.js │ │ │ │ ├── NavigatorDataProvider.spec.js │ │ │ │ ├── NavigatorLeafIcon.spec.js │ │ │ │ └── QuickNavigationModal.spec.js │ │ │ ├── ReferenceUrlProvider.spec.js │ │ │ ├── ReplayableVideoAsset.spec.js │ │ │ ├── Tabnav.spec.js │ │ │ ├── TabnavItem.spec.js │ │ │ ├── Tutorial.spec.js │ │ │ ├── Tutorial │ │ │ │ ├── Assessments.spec.js │ │ │ │ ├── Assessments │ │ │ │ │ └── Quiz.spec.js │ │ │ │ ├── AssessmentsProgress.spec.js │ │ │ │ ├── BackgroundTheme.spec.js │ │ │ │ ├── CallToAction.spec.js │ │ │ │ ├── CodePreview.spec.js │ │ │ │ ├── CodeTheme.spec.js │ │ │ │ ├── Hero.spec.js │ │ │ │ ├── HeroMetadata.spec.js │ │ │ │ ├── MobileCodePreview.spec.js │ │ │ │ ├── MobileCodePreviewToggle.spec.js │ │ │ │ ├── NavigationBar.spec.js │ │ │ │ ├── NavigationBar │ │ │ │ │ ├── MobileDropdown.spec.js │ │ │ │ │ ├── PrimaryDropdown.spec.js │ │ │ │ │ └── SecondaryDropdown.spec.js │ │ │ │ ├── Section.spec.js │ │ │ │ ├── SectionIntro.spec.js │ │ │ │ ├── SectionList.spec.js │ │ │ │ ├── SectionSteps.spec.js │ │ │ │ └── Step.spec.js │ │ │ ├── TutorialsOverview.spec.js │ │ │ ├── TutorialsOverview │ │ │ │ ├── Chapter.spec.js │ │ │ │ ├── ChapterTopicList.spec.js │ │ │ │ ├── Hero.spec.js │ │ │ │ ├── LearningPath.spec.js │ │ │ │ ├── Nav.spec.js │ │ │ │ ├── Resources.spec.js │ │ │ │ ├── ResourcesTile.spec.js │ │ │ │ ├── ResourcesTileGroup.spec.js │ │ │ │ ├── TutorialsNavigation.spec.js │ │ │ │ ├── TutorialsNavigationLink.spec.js │ │ │ │ ├── TutorialsNavigationList.spec.js │ │ │ │ ├── TutorialsNavigationMenu.spec.js │ │ │ │ ├── Volume.spec.js │ │ │ │ └── VolumeName.spec.js │ │ │ ├── VideoAsset.spec.js │ │ │ ├── WordBreak.spec.js │ │ │ └── __snapshots__ │ │ │ │ └── Navigator.spec.js.snap │ │ │ ├── directives │ │ │ └── hide.spec.js │ │ │ ├── imagePreloading │ │ │ ├── imagePreloading.spec.js │ │ │ └── tutorial.json │ │ │ ├── mixins │ │ │ ├── apiChangesHelpers.spec.js │ │ │ ├── apiChangesObserving.spec.js │ │ │ ├── handleScrollbar.spec.js │ │ │ ├── isClientMobile.spec.js │ │ │ ├── keyboardNavigation.spec.js │ │ │ ├── metadata.spec.js │ │ │ ├── onIntersect.spec.js │ │ │ ├── onIntersectViewport.spec.js │ │ │ ├── onPageLoadScrollToFragment.spec.js │ │ │ └── scrollToElement.spec.js │ │ │ ├── plugins │ │ │ ├── CommunicationBridge.spec.js │ │ │ └── CustomComponents.spec.js │ │ │ ├── setup-utils │ │ │ ├── SwiftDocCRenderPlugin.spec.js │ │ │ ├── SwiftDocCRenderRouter.spec.js │ │ │ └── vue-config-utils.spec.js │ │ │ ├── stores │ │ │ ├── ApiChangesStoreBase.spec.js │ │ │ ├── CodeThemeStore.spec.js │ │ │ ├── DocumentationTopicStore.spec.js │ │ │ ├── TopicStore.spec.js │ │ │ └── TutorialsOverviewStore.spec.js │ │ │ ├── utils │ │ │ ├── FocusTrap.spec.js │ │ │ ├── TabManager.spec.js │ │ │ ├── arrays.spec.js │ │ │ ├── assets.spec.js │ │ │ ├── breakpoints.spec.js │ │ │ ├── changeElementVOVisibility.spec.js │ │ │ ├── clipboard.spec.js │ │ │ ├── custom-highlight-lang │ │ │ │ └── swift.spec.js │ │ │ ├── data.spec.js │ │ │ ├── debounce.spec.js │ │ │ ├── get.spec.js │ │ │ ├── indentation.spec.js │ │ │ ├── input-helper.spec.js │ │ │ ├── json-patch.spec.js │ │ │ ├── json-pointer.spec.js │ │ │ ├── metadata.spec.js │ │ │ ├── multipleLines.spec.js │ │ │ ├── router-utils.spec.js │ │ │ ├── schema-version-check.spec.js │ │ │ ├── scroll-lock.spec.js │ │ │ ├── search-utils.spec.js │ │ │ ├── settings.spec.js │ │ │ ├── storage.spec.js │ │ │ ├── strings.spec.js │ │ │ ├── symbols.spec.js │ │ │ ├── syntax-highlight.spec.js │ │ │ ├── theme-settings.spec.js │ │ │ ├── themes.spec.js │ │ │ ├── throttle.spec.js │ │ │ └── url-helper.spec.js │ │ │ └── views │ │ │ ├── DocumentationTopic.spec.js │ │ │ ├── NotFound.spec.js │ │ │ ├── ServerError.spec.js │ │ │ ├── Topic.spec.js │ │ │ └── TutorialsOverview.spec.js │ ├── vue.config.js │ └── webpack-asset-path.js ├── shared │ ├── cli-install │ │ ├── pods.mdx │ │ ├── spm-xcode.mdx │ │ └── spm.mdx │ ├── pods-installation-panel.mdx │ ├── separate-local-cache-mutation-note.mdx │ ├── setup-codegen │ │ ├── combined.mdx │ │ └── single-panel.mdx │ ├── spm-package-installation-panel.mdx │ ├── spm-xcode-installation-panel.mdx │ ├── sqlite-cocoapods-panel.mdx │ └── sqlite-spm-panel.mdx └── source │ ├── _sidebar.yaml │ ├── advanced │ ├── file-uploads.mdx │ ├── request-configuration.mdx │ └── request-pipeline.mdx │ ├── api │ ├── Apollo │ │ ├── classes │ │ │ ├── ApolloClient.md │ │ │ ├── ApolloStore.ReadTransaction.md │ │ │ ├── ApolloStore.ReadWriteTransaction.md │ │ │ ├── ApolloStore.md │ │ │ ├── DefaultInterceptorProvider.md │ │ │ ├── EmptyCancellable.md │ │ │ ├── GraphQLQueryWatcher.md │ │ │ ├── GraphQLResponse.md │ │ │ ├── HTTPRequest.md │ │ │ ├── HTTPResponse.md │ │ │ ├── InMemoryNormalizedCache.md │ │ │ ├── JSONRequest.md │ │ │ ├── JSONSerializationFormat.md │ │ │ ├── MaxRetryInterceptor.md │ │ │ ├── MultipartFormData.md │ │ │ ├── NetworkFetchInterceptor.md │ │ │ ├── RequestChain.md │ │ │ ├── RequestChainNetworkTransport.md │ │ │ ├── TaskData.md │ │ │ ├── URLSessionClient.md │ │ │ └── UploadRequest.md │ │ ├── enums │ │ │ ├── ApolloClient.ApolloClientError.md │ │ │ ├── AutomaticPersistedQueryInterceptor.APQError.md │ │ │ ├── CachePolicy.md │ │ │ ├── CacheWriteInterceptor.CacheWriteError.md │ │ │ ├── GraphQLFile.GraphQLFileError.md │ │ │ ├── GraphQLHTTPRequestError.md │ │ │ ├── GraphQLResult.Source.md │ │ │ ├── JSONResponseParsingInterceptor.JSONResponseParsingError.md │ │ │ ├── MaxRetryInterceptor.RetryError.md │ │ │ ├── RequestChain.ChainError.md │ │ │ ├── ResponseCodeInterceptor.ResponseCodeError.md │ │ │ └── URLSessionClient.URLSessionClientError.md │ │ ├── extensions │ │ │ ├── ApolloClient.md │ │ │ ├── ApolloExtension.md │ │ │ ├── Dictionary.md │ │ │ ├── GraphQLError.md │ │ │ ├── GraphQLGETTransformer.md │ │ │ ├── GraphQLResponse.md │ │ │ ├── GraphQLResult.md │ │ │ ├── HTTPRequest.md │ │ │ ├── HTTPResponse.md │ │ │ ├── InterceptorProvider.md │ │ │ ├── MultipartFormData.md │ │ │ ├── NetworkTransport.md │ │ │ ├── Record.md │ │ │ ├── RecordSet.md │ │ │ ├── RequestBodyCreator.md │ │ │ ├── RequestChainNetworkTransport.md │ │ │ ├── ResponsePath.md │ │ │ └── Selection.Field.md │ │ ├── methods │ │ │ └── unzip(__).md │ │ ├── protocols │ │ │ ├── ApolloClientProtocol.md │ │ │ ├── ApolloErrorInterceptor.md │ │ │ ├── ApolloInterceptor.md │ │ │ ├── Cancellable.md │ │ │ ├── InterceptorProvider.md │ │ │ ├── NetworkTransport.md │ │ │ ├── NormalizedCache.md │ │ │ ├── RequestBodyCreator.md │ │ │ └── UploadingNetworkTransport.md │ │ ├── structs │ │ │ ├── ApolloRequestBodyCreator.md │ │ │ ├── AutomaticPersistedQueryInterceptor.md │ │ │ ├── CacheReadInterceptor.md │ │ │ ├── CacheWriteInterceptor.md │ │ │ ├── GraphQLError.Location.md │ │ │ ├── GraphQLError.md │ │ │ ├── GraphQLExecutionError.md │ │ │ ├── GraphQLFile.md │ │ │ ├── GraphQLGETTransformer.md │ │ │ ├── GraphQLResult.md │ │ │ ├── JSONResponseParsingInterceptor.md │ │ │ ├── Record.md │ │ │ ├── RecordSet.md │ │ │ ├── ResponseCodeInterceptor.md │ │ │ └── ResponsePath.md │ │ ├── toc.md │ │ └── typealiases │ │ │ ├── CacheKey.md │ │ │ ├── CacheKeyForObject.md │ │ │ ├── DataLoader.BatchLoad.md │ │ │ ├── DidChangeKeysFunc.md │ │ │ ├── GraphQLResultHandler.md │ │ │ ├── JSONObject.md │ │ │ ├── JSONValue.md │ │ │ ├── Record.Fields.md │ │ │ ├── Record.Value.md │ │ │ ├── ResponsePath.Key.md │ │ │ ├── URLSessionClient.Completion.md │ │ │ └── URLSessionClient.RawCompletion.md │ ├── ApolloAPI │ │ ├── classes │ │ │ ├── Interface.md │ │ │ └── Object.md │ │ ├── enums │ │ │ ├── DocumentType.md │ │ │ ├── Field.OutputType.md │ │ │ ├── GraphQLEnum.md │ │ │ ├── GraphQLNullable.md │ │ │ ├── GraphQLOperationType.md │ │ │ ├── InputValue.md │ │ │ ├── JSONDecodingError.md │ │ │ ├── NoFragments.md │ │ │ ├── ParentType.md │ │ │ └── Selection.md │ │ ├── extensions │ │ │ ├── AnyHashableConvertible.md │ │ │ ├── AnySelectionSet.md │ │ │ ├── Array.md │ │ │ ├── Bool.md │ │ │ ├── CacheKeyProvider.md │ │ │ ├── CacheReference.md │ │ │ ├── CustomScalarType.md │ │ │ ├── Dictionary.md │ │ │ ├── Double.md │ │ │ ├── EnumType.md │ │ │ ├── Float.md │ │ │ ├── FragmentContainer.md │ │ │ ├── GraphQLEnum.md │ │ │ ├── GraphQLMutation.md │ │ │ ├── GraphQLNullable.md │ │ │ ├── GraphQLOperation.md │ │ │ ├── GraphQLQuery.md │ │ │ ├── GraphQLSubscription.md │ │ │ ├── InputObject.md │ │ │ ├── InputValue.md │ │ │ ├── Int.md │ │ │ ├── Interface.md │ │ │ ├── JSONEncodable.md │ │ │ ├── JSONEncodableDictionary.md │ │ │ ├── LocalCacheMutation.md │ │ │ ├── MutableSelectionSet.md │ │ │ ├── NSDictionary.md │ │ │ ├── NSNull.md │ │ │ ├── Object.md │ │ │ ├── Optional.md │ │ │ ├── ParentType.md │ │ │ ├── RawRepresentable.md │ │ │ ├── RootSelectionSet.md │ │ │ ├── SchemaConfiguration.md │ │ │ ├── Selection.Conditions.md │ │ │ ├── Selection.Field.OutputType.md │ │ │ ├── Selection.Field.md │ │ │ ├── Selection.md │ │ │ ├── SelectionSet.md │ │ │ ├── String.md │ │ │ ├── URL.md │ │ │ └── Union.md │ │ ├── methods │ │ │ ├── !=(____).md │ │ │ ├── ==(____).md │ │ │ └── __(____).md │ │ ├── protocols │ │ │ ├── AnyHashableConvertible.md │ │ │ ├── AnyScalarType.md │ │ │ ├── AnySelectionSet.md │ │ │ ├── CacheEntity.md │ │ │ ├── CacheKeyProvider.md │ │ │ ├── CustomScalarType.md │ │ │ ├── EnumType.md │ │ │ ├── Fragment.md │ │ │ ├── FragmentContainer.md │ │ │ ├── GraphQLMutation.md │ │ │ ├── GraphQLOperation.md │ │ │ ├── GraphQLOperationVariableValue.md │ │ │ ├── GraphQLQuery.md │ │ │ ├── GraphQLSubscription.md │ │ │ ├── InlineFragment.md │ │ │ ├── InputObject.md │ │ │ ├── JSONDecodable.md │ │ │ ├── JSONEncodable.md │ │ │ ├── LocalCacheMutation.md │ │ │ ├── MutableRootSelectionSet.md │ │ │ ├── MutableSelectionSet.md │ │ │ ├── OutputTypeConvertible.md │ │ │ ├── ParentTypeConvertible.md │ │ │ ├── RootSelectionSet.md │ │ │ ├── ScalarType.md │ │ │ ├── SchemaConfiguration.md │ │ │ ├── SchemaUnknownTypeCacheKeyProvider.md │ │ │ ├── SelectionSet.md │ │ │ ├── SelectionSetEntityValue.md │ │ │ ├── Union.md │ │ │ ├── _InitializableByArrayLiteralElements.md │ │ │ └── _InitializableByDictionaryLiteralElements.md │ │ ├── structs │ │ │ ├── CacheReference.md │ │ │ ├── DataDict.md │ │ │ ├── InputDict.md │ │ │ ├── OperationDefinition.md │ │ │ ├── Selection.Condition.md │ │ │ ├── Selection.Conditions.md │ │ │ └── Selection.Field.md │ │ ├── toc.md │ │ └── typealiases │ │ │ ├── GraphQLEnum.RawValue.md │ │ │ ├── GraphQLOperation.Variables.md │ │ │ ├── JSONEncodableDictionary.md │ │ │ ├── JSONObject.md │ │ │ └── JSONValue.md │ ├── ApolloCodegenLib │ │ ├── classes │ │ │ ├── ASTNode.md │ │ │ ├── ApolloCodegen.md │ │ │ ├── CompilationResult.Argument.md │ │ │ ├── CompilationResult.Directive.md │ │ │ ├── CompilationResult.Field.md │ │ │ ├── CompilationResult.FragmentDefinition.md │ │ │ ├── CompilationResult.FragmentSpread.md │ │ │ ├── CompilationResult.InlineFragment.md │ │ │ ├── CompilationResult.OperationDefinition.md │ │ │ ├── CompilationResult.SelectionSet.md │ │ │ ├── CompilationResult.VariableDefinition.md │ │ │ ├── CompilationResult.md │ │ │ ├── GraphQLAbstractType.md │ │ │ ├── GraphQLCompositeType.md │ │ │ ├── GraphQLDocument.md │ │ │ ├── GraphQLEnumType.md │ │ │ ├── GraphQLEnumValue.md │ │ │ ├── GraphQLError.md │ │ │ ├── GraphQLField.md │ │ │ ├── GraphQLFieldArgument.md │ │ │ ├── GraphQLInputField.md │ │ │ ├── GraphQLInputObjectType.md │ │ │ ├── GraphQLInterfaceType.md │ │ │ ├── GraphQLJSFrontend.md │ │ │ ├── GraphQLNamedType.md │ │ │ ├── GraphQLObjectType.md │ │ │ ├── GraphQLScalarType.md │ │ │ ├── GraphQLSchema.md │ │ │ ├── GraphQLSchemaValidationError.md │ │ │ ├── GraphQLSource.md │ │ │ ├── GraphQLUnionType.md │ │ │ ├── JavaScriptError.md │ │ │ ├── JavaScriptObject.md │ │ │ ├── JavaScriptWrapper.md │ │ │ └── Schema.ReferencedTypes.md │ │ ├── enums │ │ │ ├── ApolloCodegen.Error.md │ │ │ ├── ApolloCodegenConfiguration.APQConfig.md │ │ │ ├── ApolloCodegenConfiguration.Composition.md │ │ │ ├── ApolloCodegenConfiguration.Error.md │ │ │ ├── ApolloCodegenConfiguration.OperationsFileOutput.md │ │ │ ├── ApolloCodegenConfiguration.PathType.md │ │ │ ├── ApolloCodegenConfiguration.QueryStringLiteralFormat.md │ │ │ ├── ApolloCodegenConfiguration.TestMockFileOutput.md │ │ │ ├── ApolloSchemaDownloadConfiguration.DownloadMethod.md │ │ │ ├── ApolloSchemaDownloader.SchemaDownloadError.md │ │ │ ├── ApolloURLError.md │ │ │ ├── CodegenLogger.LogLevel.md │ │ │ ├── CompilationResult.InclusionCondition.md │ │ │ ├── CompilationResult.OperationType.md │ │ │ ├── CompilationResult.Selection.md │ │ │ ├── DownloadMethod.HTTPMethod.md │ │ │ ├── DownloadMethod.OutputFormat.md │ │ │ ├── FileManagerPathError.md │ │ │ ├── Glob.MatchError.md │ │ │ ├── GraphQLType.md │ │ │ ├── InflectionRule.md │ │ │ ├── JavaScriptBridge.Error.md │ │ │ └── SchemaTypesFileOutput.ModuleType.md │ │ ├── extensions │ │ │ ├── ApolloCodegenConfiguration.md │ │ │ ├── ApolloExtension.md │ │ │ ├── ApolloSchemaDownloadConfiguration.md │ │ │ ├── FileHandle.md │ │ │ ├── GraphQLType.md │ │ │ ├── JavaScriptError.md │ │ │ └── JavaScriptObject.md │ │ ├── structs │ │ │ ├── ApolloCodegenConfiguration.ExperimentalFeatures.md │ │ │ ├── ApolloCodegenConfiguration.FileInput.md │ │ │ ├── ApolloCodegenConfiguration.FileOutput.md │ │ │ ├── ApolloCodegenConfiguration.OutputOptions.md │ │ │ ├── ApolloCodegenConfiguration.SchemaTypesFileOutput.md │ │ │ ├── ApolloCodegenConfiguration.md │ │ │ ├── ApolloSchemaDownloadConfiguration.HTTPHeader.md │ │ │ ├── ApolloSchemaDownloadConfiguration.md │ │ │ ├── ApolloSchemaDownloader.md │ │ │ ├── CodegenLogger.md │ │ │ ├── DownloadMethod.ApolloRegistrySettings.md │ │ │ ├── FileFinder.md │ │ │ ├── Glob.md │ │ │ └── GraphQLSourceLocation.md │ │ ├── toc.md │ │ └── typealiases │ │ │ └── FileAttributes.md │ ├── ApolloSQLite │ │ ├── classes │ │ │ ├── SQLiteDotSwiftDatabase.md │ │ │ └── SQLiteNormalizedCache.md │ │ ├── enums │ │ │ └── SQLiteNormalizedCacheError.md │ │ ├── extensions │ │ │ ├── SQLiteDatabase.md │ │ │ └── SQLiteNormalizedCache.md │ │ ├── protocols │ │ │ └── SQLiteDatabase.md │ │ ├── structs │ │ │ └── DatabaseRow.md │ │ └── toc.md │ ├── ApolloUtils │ │ ├── classes │ │ │ ├── Atomic.md │ │ │ ├── LinkedList.Iterator.md │ │ │ ├── LinkedList.Node.Iterator.md │ │ │ └── LinkedList.Node.md │ │ ├── extensions │ │ │ ├── ApolloCompatible.md │ │ │ ├── ApolloExtension.md │ │ │ ├── Atomic.md │ │ │ ├── DefaultStringInterpolation.md │ │ │ ├── Dictionary.md │ │ │ ├── LinkedList.Node.md │ │ │ ├── LinkedList.md │ │ │ ├── Optional.md │ │ │ └── Result.md │ │ ├── protocols │ │ │ ├── ApolloCompatible.md │ │ │ ├── DictionaryType.md │ │ │ ├── OptionalType.md │ │ │ └── ResultType.md │ │ ├── structs │ │ │ ├── ApolloExtension.md │ │ │ ├── IsEverTrue.md │ │ │ └── LinkedList.md │ │ ├── toc.md │ │ └── typealiases │ │ │ ├── LinkedList.Element.md │ │ │ └── LinkedList.Node.Element.md │ └── ApolloWebSocket │ │ ├── classes │ │ ├── SSLCert.md │ │ ├── SSLClientCertificate.md │ │ ├── SSLSecurity.md │ │ ├── SplitNetworkTransport.md │ │ ├── WebSocket.md │ │ └── WebSocketTransport.md │ │ ├── enums │ │ ├── WSError.ErrorType.md │ │ ├── WebSocket.OpCode.md │ │ ├── WebSocket.WSProtocol.md │ │ └── WebSocketError.ErrorKind.md │ │ ├── extensions │ │ ├── SplitNetworkTransport.md │ │ ├── WebSocketTransport.md │ │ └── WebSocketTransportDelegate.md │ │ ├── protocols │ │ ├── OperationMessageIdCreator.md │ │ ├── SSLTrustValidator.md │ │ ├── WebSocketClient.md │ │ ├── WebSocketClientDelegate.md │ │ └── WebSocketTransportDelegate.md │ │ ├── structs │ │ ├── ApolloSequencedOperationMessageIdCreator.md │ │ ├── SSLClientCertificateError.md │ │ ├── SSLSettings.md │ │ ├── WebSocket.WSError.md │ │ ├── WebSocketError.md │ │ └── WebSocketTransport.Configuration.md │ │ └── toc.md │ ├── caching │ ├── cache-consistency.mdx │ ├── cache-key-resolution.mdx │ ├── cache-setup.mdx │ ├── cache-transactions.mdx │ ├── introduction.mdx │ └── programmatic-cache-keys.mdx │ ├── client-directives.mdx │ ├── code-generation │ ├── codegen-cli.mdx │ ├── codegen-configuration.mdx │ ├── downloading-schema.mdx │ ├── introduction.mdx │ └── run-codegen-in-swift-code.mdx │ ├── custom-scalars.mdx │ ├── development │ ├── selection-set-initializers.mdx │ └── using-xcframework.mdx │ ├── enums.mdx │ ├── fetching │ ├── defer.mdx │ ├── error-handling.mdx │ ├── fetching-data.mdx │ ├── fragments.mdx │ ├── mutations.md │ ├── operation-arguments.mdx │ ├── persisted-queries.mdx │ ├── queries.mdx │ ├── subscriptions.mdx │ └── type-conditions.mdx │ ├── get-started.mdx │ ├── index.mdx │ ├── input-objects.mdx │ ├── logo │ ├── favicon.png │ ├── icon-apollo-white-200x200.png │ ├── logo-apollo-space-left.svg │ ├── logo-apollo-space.svg │ └── logo-apollo-subbrands-developers-space.svg │ ├── migrations │ ├── 1.0.mdx │ ├── 1.2.mdx │ ├── 1.3.mdx │ ├── 1.5.mdx │ ├── 1.6.mdx │ └── 1.7.mdx │ ├── networking │ └── client-creation.mdx │ ├── pagination │ ├── custom-types.mdx │ ├── directional-pagers.mdx │ ├── introduction.mdx │ └── multi-query.mdx │ ├── project-configuration │ ├── intro.mdx │ ├── modularization.mdx │ ├── operation-models.mdx │ ├── schema-types.mdx │ └── sdk-components.md │ ├── screenshot │ ├── apollo-xcode-plugin.png │ ├── spm_packages_add_package.png │ ├── spm_packages_dialog.png │ ├── spm_select_package.png │ └── studio-starwarsapi-download.png │ ├── testing │ └── test-mocks.mdx │ ├── troubleshooting │ ├── codegen-troubleshooting.mdx │ └── images │ │ ├── type_name_conflict_alias_output.png │ │ └── type_name_conflict_example_output.png │ └── tutorial │ ├── codegen-getting-started.mdx │ ├── images │ ├── add_info_to_list.png │ ├── add_local_package.png │ ├── add_local_package_browser.png │ ├── add_new_query_file.png │ ├── add_package_dialog.png │ ├── completed_id_query.png │ ├── connect_query_to_launch_list.png │ ├── detail_view_complete.png │ ├── dont_add_query_file_to_target.png │ ├── empty_file_template.png │ ├── explorer_add_auth_header.png │ ├── explorer_add_launches_query.png │ ├── explorer_added_empty_tab.png │ ├── explorer_added_login_mutation.png │ ├── explorer_authentication_header.png │ ├── explorer_autocomplete.png │ ├── explorer_book_trips_starter.png │ ├── explorer_book_with_trip_id_singular.png │ ├── explorer_book_with_trip_ids.png │ ├── explorer_cancel_trip_mutation.png │ ├── explorer_check_cursor.png │ ├── explorer_cursor.png │ ├── explorer_details_renamed.png │ ├── explorer_initial_added_query.png │ ├── explorer_launch_detail_result.png │ ├── explorer_launch_list_initial_response.png │ ├── explorer_launch_list_rename.png │ ├── explorer_launch_query_start.png │ ├── explorer_launches_drill_in.png │ ├── explorer_login_email_added.png │ ├── explorer_meatball_copy.png │ ├── explorer_new_tab.png │ ├── explorer_query_list.png │ ├── explorer_rocket_back.png │ ├── explorer_rocket_drill_in.png │ ├── explorer_sandbox_open.png │ ├── explorer_submit_operation.png │ ├── explorer_subscription_success.png │ ├── explorer_subscriptions_listening.png │ ├── explorer_trip_cancelled.png │ ├── explorer_tripsbooked_initial.png │ ├── explorer_tripsbooked_renamed.png │ ├── generated_swift_package_folder.png │ ├── installed_dependencies.png │ ├── launches_detail.png │ ├── link_binary_with_libraries.png │ ├── link_binary_with_libraries_dialog.png │ ├── login_mutation_email.png │ ├── login_mutation_null.png │ ├── next_minor.png │ ├── open_in_explorer_launches.png │ ├── package_in_project_hierarchy.png │ ├── query_console_log_sample.png │ ├── sandbox_green_dot.png │ ├── sandbox_landing.png │ ├── sandbox_patch_size_docs.png │ ├── sandbox_schema_book_trips.png │ ├── sandbox_schema_mutations.png │ ├── sandbox_schema_reference.png │ ├── schema_icon.png │ ├── schema_login_definition.png │ ├── schema_tripsBooked_definition.png │ ├── select_libs.png │ ├── simulator_subscription_notification_view.png │ ├── starting_app_state_simulator.png │ ├── starting_project_structure.png │ ├── tap_to_load_more.png │ └── tap_to_load_more_results.png │ ├── tutorial-add-graphql-schema.mdx │ ├── tutorial-add-more-info-to-list.mdx │ ├── tutorial-authenticate-operations.mdx │ ├── tutorial-complete-details-view.mdx │ ├── tutorial-configure-project.mdx │ ├── tutorial-connect-queries-to-ui.mdx │ ├── tutorial-define-additional-mutations.mdx │ ├── tutorial-execute-first-query.mdx │ ├── tutorial-first-mutation.mdx │ ├── tutorial-introduction.mdx │ ├── tutorial-paginate-results.mdx │ ├── tutorial-running-code-generation.mdx │ ├── tutorial-subscriptions.mdx │ └── tutorial-write-your-first-query.mdx ├── git-sh-setup ├── git-subtree.sh ├── makefile ├── screenshots ├── xcode-code-completion.png ├── xcode-data-access-error.png └── xcode-query-validation.png └── scripts ├── ensure-no-build-settings-in-pbxproj.sh ├── install-tuist.sh ├── push-forked-branch.sh ├── run-codegen.sh ├── run-test-codegen-configurations.sh └── set-version.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.editorconfig -------------------------------------------------------------------------------- /.githooks/post-checkout: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | tuist generate --no-open 4 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/actions/build-and-run-unit-tests/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/actions/build-and-run-unit-tests/action.yml -------------------------------------------------------------------------------- /.github/actions/configure-git/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/actions/configure-git/action.yml -------------------------------------------------------------------------------- /.github/actions/create-pr/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/actions/create-pr/action.yml -------------------------------------------------------------------------------- /.github/actions/run-tuist-generation/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/actions/run-tuist-generation/action.yml -------------------------------------------------------------------------------- /.github/actions/subtree-split-push/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/actions/subtree-split-push/action.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/check-pr-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/workflows/check-pr-metadata.yml -------------------------------------------------------------------------------- /.github/workflows/ci-tests-xcode-swift-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/workflows/ci-tests-xcode-swift-6.yml -------------------------------------------------------------------------------- /.github/workflows/ci-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/workflows/ci-tests.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/workflows/create-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pr-subtree-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/workflows/pr-subtree-push.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/workflows/release-check.yml -------------------------------------------------------------------------------- /.github/workflows/update-swift-js-bundle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.github/workflows/update-swift-js-bundle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /.package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/.package.resolved -------------------------------------------------------------------------------- /.tuist-version: -------------------------------------------------------------------------------- 1 | 3.42.2 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Configuration/Apollo/Apollo-Project-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Shared/Project-Debug.xcconfig" 2 | -------------------------------------------------------------------------------- /Configuration/Apollo/Apollo-Project-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Shared/Project-Release.xcconfig" 2 | -------------------------------------------------------------------------------- /Configuration/Apollo/Apollo-Target-Tests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Apollo/Apollo-Target-Tests.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Project-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Workspace-Debug.xcconfig" 2 | -------------------------------------------------------------------------------- /Configuration/Shared/Project-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Project-Release.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Project-Version.xcconfig: -------------------------------------------------------------------------------- 1 | CURRENT_PROJECT_VERSION = 1.3.0 2 | -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Analysis.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Analysis.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Debug.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Language.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Language.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Linking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Linking.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Packaging.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Packaging.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Release.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Search-Paths.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Search-Paths.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Shared.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Target-Test.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Target-Test.xcconfig -------------------------------------------------------------------------------- /Configuration/Shared/Workspace-Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Configuration/Shared/Workspace-Warnings.xcconfig -------------------------------------------------------------------------------- /FORKED-WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/FORKED-WORKFLOW.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/LICENSE -------------------------------------------------------------------------------- /Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Project.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/RELEASE_CHECKLIST.md -------------------------------------------------------------------------------- /Sources/AnimalKingdomAPI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/AnimalKingdomAPI/Info.plist -------------------------------------------------------------------------------- /Sources/AnimalKingdomAPI/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/AnimalKingdomAPI/Resources.swift -------------------------------------------------------------------------------- /Sources/GitHubAPI/GitHubAPI/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/GitHubAPI/GitHubAPI/Package.swift -------------------------------------------------------------------------------- /Sources/GitHubAPI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/GitHubAPI/Info.plist -------------------------------------------------------------------------------- /Sources/GitHubAPI/graphql/Queries/Repository.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/GitHubAPI/graphql/Queries/Repository.graphql -------------------------------------------------------------------------------- /Sources/GitHubAPI/graphql/operationIDs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/GitHubAPI/graphql/operationIDs.json -------------------------------------------------------------------------------- /Sources/GitHubAPI/graphql/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/GitHubAPI/graphql/schema.graphqls -------------------------------------------------------------------------------- /Sources/StarWarsAPI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/StarWarsAPI/Info.plist -------------------------------------------------------------------------------- /Sources/StarWarsAPI/StarWarsAPI/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/StarWarsAPI/StarWarsAPI/Package.swift -------------------------------------------------------------------------------- /Sources/StarWarsAPI/starwars-graphql/API.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/StarWarsAPI/starwars-graphql/API.json -------------------------------------------------------------------------------- /Sources/StarWarsAPI/starwars-graphql/Search.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/StarWarsAPI/starwars-graphql/Search.graphql -------------------------------------------------------------------------------- /Sources/StarWarsAPI/starwars-graphql/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/StarWarsAPI/starwars-graphql/schema.graphqls -------------------------------------------------------------------------------- /Sources/StarWarsAPI/starwars-graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/StarWarsAPI/starwars-graphql/schema.json -------------------------------------------------------------------------------- /Sources/SubscriptionAPI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/SubscriptionAPI/Info.plist -------------------------------------------------------------------------------- /Sources/SubscriptionAPI/graphql/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/SubscriptionAPI/graphql/schema.graphqls -------------------------------------------------------------------------------- /Sources/SubscriptionAPI/graphql/subscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/SubscriptionAPI/graphql/subscription.graphql -------------------------------------------------------------------------------- /Sources/UploadAPI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/UploadAPI/Info.plist -------------------------------------------------------------------------------- /Sources/UploadAPI/UploadAPI/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/UploadAPI/UploadAPI/Package.swift -------------------------------------------------------------------------------- /Sources/UploadAPI/graphql/UploadOneFile.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/UploadAPI/graphql/UploadOneFile.graphql -------------------------------------------------------------------------------- /Sources/UploadAPI/graphql/operationIDs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/UploadAPI/graphql/operationIDs.json -------------------------------------------------------------------------------- /Sources/UploadAPI/graphql/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Sources/UploadAPI/graphql/schema.graphqls -------------------------------------------------------------------------------- /SwiftScripts/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/SwiftScripts/Package.resolved -------------------------------------------------------------------------------- /SwiftScripts/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/SwiftScripts/Package.swift -------------------------------------------------------------------------------- /SwiftScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/SwiftScripts/README.md -------------------------------------------------------------------------------- /SwiftScripts/Sources/Codegen/Codegen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/SwiftScripts/Sources/Codegen/Codegen.swift -------------------------------------------------------------------------------- /SwiftScripts/Sources/SchemaDownload/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/SwiftScripts/Sources/SchemaDownload/main.swift -------------------------------------------------------------------------------- /SwiftScripts/Sources/TargetConfig/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/SwiftScripts/Sources/TargetConfig/Module.swift -------------------------------------------------------------------------------- /SwiftScripts/Sources/TargetConfig/Target.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/SwiftScripts/Sources/TargetConfig/Target.swift -------------------------------------------------------------------------------- /SwiftScripts/Tests/CodegenTests/CodegenTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/SwiftScripts/Tests/CodegenTests/CodegenTests.swift -------------------------------------------------------------------------------- /Tests/ApolloCodegenInternalTestHelpers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloCodegenInternalTestHelpers/Info.plist -------------------------------------------------------------------------------- /Tests/ApolloCodegenLibWrapper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloCodegenLibWrapper/Info.plist -------------------------------------------------------------------------------- /Tests/ApolloCodegenTests/ApolloCodegenTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloCodegenTests/ApolloCodegenTests.swift -------------------------------------------------------------------------------- /Tests/ApolloCodegenTests/GlobTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloCodegenTests/GlobTests.swift -------------------------------------------------------------------------------- /Tests/ApolloCodegenTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloCodegenTests/Info.plist -------------------------------------------------------------------------------- /Tests/ApolloCodegenTests/PluralizerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloCodegenTests/PluralizerTests.swift -------------------------------------------------------------------------------- /Tests/ApolloCodegenTests/SourcePackages/.keep: -------------------------------------------------------------------------------- 1 | This file exists to preserve folder structure in git. 2 | -------------------------------------------------------------------------------- /Tests/ApolloCodegenTests/URLDownloaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloCodegenTests/URLDownloaderTests.swift -------------------------------------------------------------------------------- /Tests/ApolloCodegenTests/URLExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloCodegenTests/URLExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/FileFinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/FileFinder.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/Info.plist -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/Matchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/Matchable.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/MockOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/MockOperation.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/MockURLSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/MockURLSession.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/MockWebSocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/MockWebSocket.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/Resources/a.txt: -------------------------------------------------------------------------------- 1 | Alpha file content. 2 | -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/Resources/b.txt: -------------------------------------------------------------------------------- 1 | Bravo file content. 2 | -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/Resources/c.txt: -------------------------------------------------------------------------------- 1 | Charlie file content. 2 | -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/String+Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/String+Data.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/TestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/TestError.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/TestFileHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/TestFileHelper.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/TestObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/TestObserver.swift -------------------------------------------------------------------------------- /Tests/ApolloInternalTestHelpers/TestURLs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloInternalTestHelpers/TestURLs.swift -------------------------------------------------------------------------------- /Tests/ApolloPaginationTests/ConcurrencyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloPaginationTests/ConcurrencyTest.swift -------------------------------------------------------------------------------- /Tests/ApolloPaginationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloPaginationTests/Info.plist -------------------------------------------------------------------------------- /Tests/ApolloPaginationTests/Mocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloPaginationTests/Mocks.swift -------------------------------------------------------------------------------- /Tests/ApolloPaginationTests/OffsetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloPaginationTests/OffsetTests.swift -------------------------------------------------------------------------------- /Tests/ApolloPaginationTests/SubscribeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloPaginationTests/SubscribeTests.swift -------------------------------------------------------------------------------- /Tests/ApolloPaginationTests/XCTAssert+Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloPaginationTests/XCTAssert+Async.swift -------------------------------------------------------------------------------- /Tests/ApolloPerformanceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloPerformanceTests/Info.plist -------------------------------------------------------------------------------- /Tests/ApolloTests/ApolloClientOperationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/ApolloClientOperationTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/BatchedLoadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/BatchedLoadTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/BlindRetryingTestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/BlindRetryingTestInterceptor.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/Cache/FetchQueryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/Cache/FetchQueryTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/Cache/StoreConcurrencyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/Cache/StoreConcurrencyTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/Cache/StoreSubscriptionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/Cache/StoreSubscriptionTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/Cache/WatchQueryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/Cache/WatchQueryTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/CacheKeyForFieldTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/CacheKeyForFieldTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/CacheKeyResolutionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/CacheKeyResolutionTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/ClearCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/ClearCacheTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/DataDictMergingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/DataDictMergingTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/DataLoaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/DataLoaderTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/DeferTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/DeferTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/GETTransformerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/GETTransformerTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/GraphQLFileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/GraphQLFileTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/GraphQLMapEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/GraphQLMapEncodingTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/GraphQLResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/GraphQLResponseTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/GraphQLResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/GraphQLResultTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/Info.plist -------------------------------------------------------------------------------- /Tests/ApolloTests/InputDictTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/InputDictTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/JSONTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/JSONTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/JSONValueMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/JSONValueMatcher.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/MultipartFormData+Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/MultipartFormData+Testing.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/MultipartFormDataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/MultipartFormDataTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/MutatingSelectionSetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/MutatingSelectionSetTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/ObjectDataTransformerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/ObjectDataTransformerTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/OperationMessageMatchers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/OperationMessageMatchers.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/PossiblyDeferredTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/PossiblyDeferredTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/RequestBodyCreatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/RequestBodyCreatorTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/RequestChainTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/RequestChainTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/RequestClientMetadataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/RequestClientMetadataTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/RequestContextTimeoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/RequestContextTimeoutTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/ResponsePathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/ResponsePathTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/SelectionSetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/SelectionSetTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/TestCustomRequestBodyCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/TestCustomRequestBodyCreator.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/TestMockTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/TestMockTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/URL+QueryDict.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/URL+QueryDict.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/UploadRequestTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/UploadRequestTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/WebSocket/CompressionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/WebSocket/CompressionTests.swift -------------------------------------------------------------------------------- /Tests/ApolloTests/WebSocket/WebSocketTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloTests/WebSocket/WebSocketTests.swift -------------------------------------------------------------------------------- /Tests/ApolloWrapper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/ApolloWrapper/Info.plist -------------------------------------------------------------------------------- /Tests/CodegenCLITests/Commands/GenerateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/Commands/GenerateTests.swift -------------------------------------------------------------------------------- /Tests/CodegenCLITests/Commands/InitializeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/Commands/InitializeTests.swift -------------------------------------------------------------------------------- /Tests/CodegenCLITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/Info.plist -------------------------------------------------------------------------------- /Tests/CodegenCLITests/Matchers/ErrorMatchers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/Matchers/ErrorMatchers.swift -------------------------------------------------------------------------------- /Tests/CodegenCLITests/Support/MockFileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/Support/MockFileManager.swift -------------------------------------------------------------------------------- /Tests/CodegenCLITests/Support/TestSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/Support/TestSupport.swift -------------------------------------------------------------------------------- /Tests/CodegenCLITests/VersionCheckerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/VersionCheckerTests.swift -------------------------------------------------------------------------------- /Tests/CodegenCLITests/pod-install-test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/pod-install-test/Podfile -------------------------------------------------------------------------------- /Tests/CodegenCLITests/swiftpm-test/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/CodegenCLITests/swiftpm-test/Package.swift -------------------------------------------------------------------------------- /Tests/TestCodeGenConfigurations/EmbeddedInTarget-InSchemaModule/README.md: -------------------------------------------------------------------------------- 1 | # TestApp 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/TestPlans/Apollo-CITestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/TestPlans/Apollo-CITestPlan.xctestplan -------------------------------------------------------------------------------- /Tests/TestPlans/Apollo-Codegen-CITestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/TestPlans/Apollo-Codegen-CITestPlan.xctestplan -------------------------------------------------------------------------------- /Tests/TestPlans/Apollo-CodegenTestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/TestPlans/Apollo-CodegenTestPlan.xctestplan -------------------------------------------------------------------------------- /Tests/TestPlans/Apollo-PaginationTestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/TestPlans/Apollo-PaginationTestPlan.xctestplan -------------------------------------------------------------------------------- /Tests/TestPlans/Apollo-UnitTestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/TestPlans/Apollo-UnitTestPlan.xctestplan -------------------------------------------------------------------------------- /Tests/TestPlans/CodegenCLITestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Tests/TestPlans/CodegenCLITestPlan.xctestplan -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/Workspace.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/.circleci/config.yml -------------------------------------------------------------------------------- /apollo-ios-codegen/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/.github/CODEOWNERS -------------------------------------------------------------------------------- /apollo-ios-codegen/.github/workflows/pr-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/.github/workflows/pr-close.yml -------------------------------------------------------------------------------- /apollo-ios-codegen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/.gitignore -------------------------------------------------------------------------------- /apollo-ios-codegen/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/CONTRIBUTING.md -------------------------------------------------------------------------------- /apollo-ios-codegen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/LICENSE -------------------------------------------------------------------------------- /apollo-ios-codegen/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Package.resolved -------------------------------------------------------------------------------- /apollo-ios-codegen/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Package.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/README.md -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/CodegenCLI/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/CodegenCLI/Error.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/GraphQLCompiler/JavaScript/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2, 3 | } -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/GraphQLCompiler/JavaScript/src/__testUtils__/matchers.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/IR/IR+Definition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/IR/IR+Definition.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/IR/IR+Entity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/IR/IR+Entity.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/IR/IR+Fields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/IR/IR+Fields.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/IR/IR+NamedFragment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/IR/IR+NamedFragment.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/IR/IR+Operation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/IR/IR+Operation.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/IR/IR+Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/IR/IR+Schema.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/IR/IR+SelectionSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/IR/IR+SelectionSet.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/IR/IRBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/IR/IRBuilder.swift -------------------------------------------------------------------------------- /apollo-ios-codegen/Sources/apollo-ios-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Sources/apollo-ios-cli/README.md -------------------------------------------------------------------------------- /apollo-ios-codegen/Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/Tests/README.md -------------------------------------------------------------------------------- /apollo-ios-codegen/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/makefile -------------------------------------------------------------------------------- /apollo-ios-codegen/scripts/get-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/scripts/get-version.sh -------------------------------------------------------------------------------- /apollo-ios-codegen/scripts/version-constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-codegen/scripts/version-constants.sh -------------------------------------------------------------------------------- /apollo-ios-pagination/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/.circleci/config.yml -------------------------------------------------------------------------------- /apollo-ios-pagination/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/.github/CODEOWNERS -------------------------------------------------------------------------------- /apollo-ios-pagination/.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/.github/renovate.json5 -------------------------------------------------------------------------------- /apollo-ios-pagination/.github/workflows/pr-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/.github/workflows/pr-close.yml -------------------------------------------------------------------------------- /apollo-ios-pagination/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/.gitignore -------------------------------------------------------------------------------- /apollo-ios-pagination/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/CONTRIBUTING.md -------------------------------------------------------------------------------- /apollo-ios-pagination/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/LICENSE -------------------------------------------------------------------------------- /apollo-ios-pagination/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/Package.resolved -------------------------------------------------------------------------------- /apollo-ios-pagination/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/Package.swift -------------------------------------------------------------------------------- /apollo-ios-pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios-pagination/README.md -------------------------------------------------------------------------------- /apollo-ios-pagination/Sources/ApolloPagination/OffsetBasedPagination/OffsetPagination.swift: -------------------------------------------------------------------------------- 1 | public enum OffsetPagination { } 2 | -------------------------------------------------------------------------------- /apollo-ios-pagination/Sources/ApolloPagination/UpdateSource.swift: -------------------------------------------------------------------------------- 1 | public enum UpdateSource: Hashable { 2 | case server, cache 3 | } 4 | -------------------------------------------------------------------------------- /apollo-ios/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.circleci/config.yml -------------------------------------------------------------------------------- /apollo-ios/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.gitattributes -------------------------------------------------------------------------------- /apollo-ios/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.github/CODEOWNERS -------------------------------------------------------------------------------- /apollo-ios/.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /apollo-ios/.github/ISSUE_TEMPLATE/question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.github/ISSUE_TEMPLATE/question.yaml -------------------------------------------------------------------------------- /apollo-ios/.github/workflows/pr-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.github/workflows/pr-close.yml -------------------------------------------------------------------------------- /apollo-ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.gitignore -------------------------------------------------------------------------------- /apollo-ios/.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.gitleaks.toml -------------------------------------------------------------------------------- /apollo-ios/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.gitmodules -------------------------------------------------------------------------------- /apollo-ios/.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/.spi.yml -------------------------------------------------------------------------------- /apollo-ios/Apollo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Apollo.podspec -------------------------------------------------------------------------------- /apollo-ios/ApolloTestSupport.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/ApolloTestSupport.podspec -------------------------------------------------------------------------------- /apollo-ios/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/CHANGELOG.md -------------------------------------------------------------------------------- /apollo-ios/CLI/apollo-ios-cli.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/CLI/apollo-ios-cli.tar.gz -------------------------------------------------------------------------------- /apollo-ios/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/CONTRIBUTING.md -------------------------------------------------------------------------------- /apollo-ios/CodegenProposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/CodegenProposal.md -------------------------------------------------------------------------------- /apollo-ios/Design/3093-graphql-defer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Design/3093-graphql-defer.md -------------------------------------------------------------------------------- /apollo-ios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/LICENSE -------------------------------------------------------------------------------- /apollo-ios/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Package.swift -------------------------------------------------------------------------------- /apollo-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/README.md -------------------------------------------------------------------------------- /apollo-ios/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/ROADMAP.md -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/AnyGraphQLResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/AnyGraphQLResponse.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/ApolloClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/ApolloClient.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/ApolloClientProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/ApolloClientProtocol.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/ApolloInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/ApolloInterceptor.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/ApolloStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/ApolloStore.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/Atomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/Atomic.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/Bundle+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/Bundle+Helpers.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/CacheReadInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/CacheReadInterceptor.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/Cancellable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/Cancellable.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/Collection+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/Collection+Helpers.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/Constants.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/DataDict+Merging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/DataDict+Merging.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/DataDictMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/DataDictMapper.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/DataLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/DataLoader.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/Dictionary+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/Dictionary+Helpers.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/GraphQLError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/GraphQLError.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/GraphQLExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/GraphQLExecutor.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/GraphQLFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/GraphQLFile.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/GraphQLHTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/GraphQLHTTPMethod.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/GraphQLQueryWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/GraphQLQueryWatcher.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/GraphQLResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/GraphQLResponse.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/GraphQLResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/GraphQLResult.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/HTTPRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/HTTPRequest.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/HTTPResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/HTTPResponse.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/InterceptorProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/InterceptorProvider.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/JSONConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/JSONConverter.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/JSONRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/JSONRequest.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/MaxRetryInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/MaxRetryInterceptor.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/MultipartFormData.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/NetworkTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/NetworkTransport.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/NormalizedCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/NormalizedCache.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/PathComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/PathComponent.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/PossiblyDeferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/PossiblyDeferred.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/Record.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/Record.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/RecordSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/RecordSet.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/RequestBodyCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/RequestBodyCreator.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/RequestChain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/RequestChain.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/RequestContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/RequestContext.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/ResponsePath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/ResponsePath.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/TaskData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/TaskData.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/URLSessionClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/URLSessionClient.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/Apollo/UploadRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/Apollo/UploadRequest.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/CacheKeyInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/CacheKeyInfo.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/CacheReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/CacheReference.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/DataDict.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/DataDict.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/Deferred.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/FragmentProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/FragmentProtocols.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/GraphQLEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/GraphQLEnum.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/GraphQLNullable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/GraphQLNullable.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/GraphQLOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/GraphQLOperation.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/InputValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/InputValue.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/JSON.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/JSONDecodingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/JSONDecodingError.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/ObjectData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/ObjectData.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/ParentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/ParentType.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/ScalarTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/ScalarTypes.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/SchemaMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/SchemaMetadata.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/SchemaTypes/Union.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/SchemaTypes/Union.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/Selection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/Selection.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloAPI/SelectionSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloAPI/SelectionSet.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloSQLite/JournalMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloSQLite/JournalMode.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloSQLite/SQLiteDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloSQLite/SQLiteDatabase.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloTestSupport/Field.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloTestSupport/Field.swift -------------------------------------------------------------------------------- /apollo-ios/Sources/ApolloTestSupport/TestMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Sources/ApolloTestSupport/TestMock.swift -------------------------------------------------------------------------------- /apollo-ios/Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/Tests/README.md -------------------------------------------------------------------------------- /apollo-ios/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/makefile -------------------------------------------------------------------------------- /apollo-ios/scripts/cli-version-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/scripts/cli-version-check.sh -------------------------------------------------------------------------------- /apollo-ios/scripts/download-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/scripts/download-cli.sh -------------------------------------------------------------------------------- /apollo-ios/scripts/get-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/apollo-ios/scripts/get-version.sh -------------------------------------------------------------------------------- /apollo-ios/scripts/version-constants.sh: -------------------------------------------------------------------------------- 1 | APOLLO_CONSTANTS_FILE="Sources/Apollo/Constants.swift" 2 | -------------------------------------------------------------------------------- /docs/.gitattributes: -------------------------------------------------------------------------------- 1 | *.graphql.swift linguist-generated=true -------------------------------------------------------------------------------- /docs/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "markdown.extension.toc.updateOnSave": false 3 | } -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/css/index.5bae6993.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/css/index.5bae6993.css -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/css/topic.f6469788.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/css/topic.f6469788.css -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/developer-og.jpg -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/favicon.ico -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/favicon.svg -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/index.html -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/index/index.json -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/js/index.030c4062.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/js/index.030c4062.js -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/js/topic.cdcef8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/js/topic.cdcef8eb.js -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/metadata.json -------------------------------------------------------------------------------- /docs/docc/Apollo.doccarchive/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/Apollo.doccarchive/theme-settings.json -------------------------------------------------------------------------------- /docs/docc/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/docc/netlify.toml -------------------------------------------------------------------------------- /docs/renderer/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/.browserslistrc -------------------------------------------------------------------------------- /docs/renderer/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/.editorconfig -------------------------------------------------------------------------------- /docs/renderer/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/.env.development -------------------------------------------------------------------------------- /docs/renderer/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/.eslintrc.js -------------------------------------------------------------------------------- /docs/renderer/.github/ISSUE_TEMPLATE/BUG_REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/.github/ISSUE_TEMPLATE/BUG_REPORT.yml -------------------------------------------------------------------------------- /docs/renderer/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /docs/renderer/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/.github/pull_request_template.md -------------------------------------------------------------------------------- /docs/renderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/.gitignore -------------------------------------------------------------------------------- /docs/renderer/.nvmrc: -------------------------------------------------------------------------------- 1 | 14.21.3 2 | -------------------------------------------------------------------------------- /docs/renderer/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/renderer/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/renderer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/LICENSE.txt -------------------------------------------------------------------------------- /docs/renderer/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/NOTICE.txt -------------------------------------------------------------------------------- /docs/renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/README.md -------------------------------------------------------------------------------- /docs/renderer/SwiftDocCRender.docc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/SwiftDocCRender.docc/Info.plist -------------------------------------------------------------------------------- /docs/renderer/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/app/index.html -------------------------------------------------------------------------------- /docs/renderer/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/app/main.js -------------------------------------------------------------------------------- /docs/renderer/app/public/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/app/public/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/renderer/app/public/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/app/public/developer-og.jpg -------------------------------------------------------------------------------- /docs/renderer/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/app/public/favicon.ico -------------------------------------------------------------------------------- /docs/renderer/app/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/app/public/favicon.svg -------------------------------------------------------------------------------- /docs/renderer/app/public/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/app/public/theme-settings.json -------------------------------------------------------------------------------- /docs/renderer/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/babel.config.js -------------------------------------------------------------------------------- /docs/renderer/bin/baseUrlPlaceholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/bin/baseUrlPlaceholder.js -------------------------------------------------------------------------------- /docs/renderer/bin/check-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/bin/check-source -------------------------------------------------------------------------------- /docs/renderer/bin/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/bin/environment -------------------------------------------------------------------------------- /docs/renderer/bin/rundocc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/bin/rundocc -------------------------------------------------------------------------------- /docs/renderer/bin/transformIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/bin/transformIndex.js -------------------------------------------------------------------------------- /docs/renderer/build-script-helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/build-script-helper.py -------------------------------------------------------------------------------- /docs/renderer/dist/css/index.5bae6993.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/css/index.5bae6993.css -------------------------------------------------------------------------------- /docs/renderer/dist/css/topic.f6469788.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/css/topic.f6469788.css -------------------------------------------------------------------------------- /docs/renderer/dist/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/renderer/dist/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/developer-og.jpg -------------------------------------------------------------------------------- /docs/renderer/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/favicon.ico -------------------------------------------------------------------------------- /docs/renderer/dist/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/favicon.svg -------------------------------------------------------------------------------- /docs/renderer/dist/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/renderer/dist/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/renderer/dist/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/renderer/dist/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/renderer/dist/index-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/index-template.html -------------------------------------------------------------------------------- /docs/renderer/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/index.html -------------------------------------------------------------------------------- /docs/renderer/dist/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/chunk-vendors.b24b7aaa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/chunk-vendors.b24b7aaa.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/index.030c4062.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/index.030c4062.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/topic.cdcef8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/topic.cdcef8eb.js -------------------------------------------------------------------------------- /docs/renderer/dist/js/tutorials-overview.9232fc17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/js/tutorials-overview.9232fc17.js -------------------------------------------------------------------------------- /docs/renderer/dist/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/dist/theme-settings.json -------------------------------------------------------------------------------- /docs/renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/index.js -------------------------------------------------------------------------------- /docs/renderer/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/jest.config.js -------------------------------------------------------------------------------- /docs/renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/package.json -------------------------------------------------------------------------------- /docs/renderer/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/postcss.config.js -------------------------------------------------------------------------------- /docs/renderer/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/App.vue -------------------------------------------------------------------------------- /docs/renderer/src/assets/img/icons/added-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/assets/img/icons/added-icon.svg -------------------------------------------------------------------------------- /docs/renderer/src/assets/img/icons/modified-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/assets/img/icons/modified-icon.svg -------------------------------------------------------------------------------- /docs/renderer/src/assets/img/no-image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/assets/img/no-image@2x.png -------------------------------------------------------------------------------- /docs/renderer/src/components/Article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Article.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Article/Assessments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Article/Assessments.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Article/Body.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Article/Body.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Article/BodyContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Article/BodyContent.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Article/ContentNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Article/ContentNode.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Article/Hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Article/Hero.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Asset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Asset.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Badge.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/BaseDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/BaseDropdown.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/BreakpointEmitter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/BreakpointEmitter.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/ButtonLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/ButtonLink.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/CallToAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/CallToAction.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/CallToActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/CallToActionButton.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/ColorSchemeToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/ColorSchemeToggle.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/ContentNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/ContentNode.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/ContentNode/Aside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/ContentNode/Aside.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/ContentNode/Figure.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/ContentNode/Figure.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/ContentNode/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/ContentNode/Table.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/DocumentationTopic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/DocumentationTopic.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/DropdownCustom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/DropdownCustom.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Filter/FilterInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Filter/FilterInput.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Filter/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Filter/Tag.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Filter/TagList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Filter/TagList.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Footer.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/GenericError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/GenericError.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/GenericModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/GenericModal.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/GridColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/GridColumn.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/GridRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/GridRow.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Headline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Headline.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/ArticleIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/ArticleIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/ChevronIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/ChevronIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/CloseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/CloseIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/DocumentIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/DocumentIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/DownloadIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/DownloadIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/EllipsisIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/EllipsisIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/EndpointIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/EndpointIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/FilterIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/FilterIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/ForumIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/ForumIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/MagnifierIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/MagnifierIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/PathIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/PathIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/PlayIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/PlayIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/SearchIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/SearchIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/SidenavIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/SidenavIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/SpinnerIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/SpinnerIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/SwiftFileIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/SwiftFileIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/TimerIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/TimerIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/TopicFuncIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/TopicFuncIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/TutorialIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/TutorialIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Icons/XcodeIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Icons/XcodeIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/ImageAsset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/ImageAsset.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/LinkableElement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/LinkableElement.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/NavBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/NavBase.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/NavMenuItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/NavMenuItem.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/NavMenuItemBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/NavMenuItemBase.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/NavMenuItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/NavMenuItems.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/NavMenuLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/NavMenuLink.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/NavTitleContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/NavTitleContainer.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Navigator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Navigator.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/SVGIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/SVGIcon.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Tabnav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Tabnav.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/TabnavItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/TabnavItem.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/TransitionExpand.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/TransitionExpand.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Tutorial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Tutorial.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Tutorial/CodeTheme.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Tutorial/CodeTheme.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Tutorial/Hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Tutorial/Hero.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Tutorial/Section.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Tutorial/Section.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/Tutorial/Step.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/Tutorial/Step.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/TutorialsOverview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/TutorialsOverview.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/VideoAsset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/VideoAsset.vue -------------------------------------------------------------------------------- /docs/renderer/src/components/WordBreak.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/components/WordBreak.vue -------------------------------------------------------------------------------- /docs/renderer/src/constants/Changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/Changes.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/ColorScheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/ColorScheme.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/HeroColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/HeroColors.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/Language.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/SymbolKind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/SymbolKind.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/TopicTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/TopicTypes.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/multipleLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/multipleLines.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/nav.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/roles.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/router.js -------------------------------------------------------------------------------- /docs/renderer/src/constants/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/constants/sidebar.js -------------------------------------------------------------------------------- /docs/renderer/src/directives/hide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/directives/hide.js -------------------------------------------------------------------------------- /docs/renderer/src/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/directives/index.js -------------------------------------------------------------------------------- /docs/renderer/src/errors/FetchError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/errors/FetchError.js -------------------------------------------------------------------------------- /docs/renderer/src/errors/RedirectError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/errors/RedirectError.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/apiChangesHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/apiChangesHelpers.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/apiChangesObserving.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/apiChangesObserving.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/apiChangesProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/apiChangesProvider.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/handleScrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/handleScrollbar.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/imageAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/imageAsset.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/isClientMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/isClientMobile.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/keyboardNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/keyboardNavigation.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/metadata.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/multipleSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/multipleSelection.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/onIntersect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/onIntersect.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/onIntersectViewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/onIntersectViewport.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/performanceMetrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/performanceMetrics.js -------------------------------------------------------------------------------- /docs/renderer/src/mixins/scrollToElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/mixins/scrollToElement.js -------------------------------------------------------------------------------- /docs/renderer/src/plugins/CommunicationBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/plugins/CommunicationBridge.js -------------------------------------------------------------------------------- /docs/renderer/src/plugins/CustomComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/plugins/CustomComponents.js -------------------------------------------------------------------------------- /docs/renderer/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/routes.js -------------------------------------------------------------------------------- /docs/renderer/src/setup-utils/theme-build-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/setup-utils/theme-build-utils.js -------------------------------------------------------------------------------- /docs/renderer/src/setup-utils/vue-config-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/setup-utils/vue-config-utils.js -------------------------------------------------------------------------------- /docs/renderer/src/stores/ApiChangesStoreBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/stores/ApiChangesStoreBase.js -------------------------------------------------------------------------------- /docs/renderer/src/stores/AppStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/stores/AppStore.js -------------------------------------------------------------------------------- /docs/renderer/src/stores/CodeThemeStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/stores/CodeThemeStore.js -------------------------------------------------------------------------------- /docs/renderer/src/stores/DocumentationTopicStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/stores/DocumentationTopicStore.js -------------------------------------------------------------------------------- /docs/renderer/src/stores/QuickNavigationStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/stores/QuickNavigationStore.js -------------------------------------------------------------------------------- /docs/renderer/src/stores/TopicStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/stores/TopicStore.js -------------------------------------------------------------------------------- /docs/renderer/src/stores/TutorialsOverviewStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/stores/TutorialsOverviewStore.js -------------------------------------------------------------------------------- /docs/renderer/src/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/_base.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/_core.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/_theme_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/_theme_base.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/_theme_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/_theme_core.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/_theme_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/_theme_vars.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/base/_accessibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/base/_accessibility.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/base/_changes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/base/_changes.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/base/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/base/_colors.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/base/_reset.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/base/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/base/_syntax.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/base/_typography.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_breakpoints.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_buttons.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_changes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_changes.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_colors.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_helpers.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_maps.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_nav.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_selectors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_selectors.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_syntax.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_typography.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/_vars.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/colors/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/colors/_dark.scss -------------------------------------------------------------------------------- /docs/renderer/src/styles/core/colors/_light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/styles/core/colors/_light.scss -------------------------------------------------------------------------------- /docs/renderer/src/utils/FocusTrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/FocusTrap.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/TabManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/TabManager.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/__mocks__/FocusTrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/__mocks__/FocusTrap.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/__mocks__/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/__mocks__/debounce.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/__mocks__/theme-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/__mocks__/theme-settings.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/arrays.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/assets.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/breakpoints.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/changeElementVOVisibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/changeElementVOVisibility.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/clipboard.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/custom-highlight-lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/renderer/src/utils/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/data.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/debounce.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/get.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/indentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/indentation.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/input-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/input-helper.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/json-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/json-patch.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/json-pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/json-pointer.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/loading.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/metadata.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/multipleLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/multipleLines.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/router-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/router-utils.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/schema-version-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/schema-version-check.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/scroll-lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/scroll-lock.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/search-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/search-utils.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/settings.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/storage.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/strings.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/symbols.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/syntax-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/syntax-highlight.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/theme-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/theme-settings.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/themes.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/throttle.js -------------------------------------------------------------------------------- /docs/renderer/src/utils/url-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/utils/url-helper.js -------------------------------------------------------------------------------- /docs/renderer/src/views/DocumentationTopic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/views/DocumentationTopic.vue -------------------------------------------------------------------------------- /docs/renderer/src/views/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/views/NotFound.vue -------------------------------------------------------------------------------- /docs/renderer/src/views/ServerError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/views/ServerError.vue -------------------------------------------------------------------------------- /docs/renderer/src/views/Topic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/views/Topic.vue -------------------------------------------------------------------------------- /docs/renderer/src/views/TutorialsOverview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/src/views/TutorialsOverview.vue -------------------------------------------------------------------------------- /docs/renderer/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/test-utils.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/App.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/Article.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/Article.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/Asset.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/Asset.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/Badge.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/Badge.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/Footer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/Footer.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/GridRow.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/GridRow.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/Headline.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/Headline.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/NavBase.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/NavBase.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/Tabnav.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/Tabnav.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/components/Tutorial.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/components/Tutorial.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/directives/hide.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/directives/hide.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/mixins/metadata.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/mixins/metadata.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/mixins/onIntersect.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/mixins/onIntersect.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/stores/TopicStore.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/stores/TopicStore.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/FocusTrap.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/FocusTrap.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/TabManager.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/TabManager.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/arrays.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/arrays.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/assets.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/assets.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/breakpoints.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/breakpoints.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/clipboard.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/clipboard.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/data.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/debounce.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/debounce.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/get.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/get.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/indentation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/indentation.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/input-helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/input-helper.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/json-patch.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/json-patch.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/json-pointer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/json-pointer.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/metadata.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/metadata.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/multipleLines.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/multipleLines.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/router-utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/router-utils.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/scroll-lock.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/scroll-lock.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/search-utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/search-utils.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/settings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/settings.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/storage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/storage.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/strings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/strings.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/symbols.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/symbols.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/themes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/themes.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/throttle.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/throttle.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/utils/url-helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/utils/url-helper.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/views/NotFound.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/views/NotFound.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/views/ServerError.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/views/ServerError.spec.js -------------------------------------------------------------------------------- /docs/renderer/tests/unit/views/Topic.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/tests/unit/views/Topic.spec.js -------------------------------------------------------------------------------- /docs/renderer/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/vue.config.js -------------------------------------------------------------------------------- /docs/renderer/webpack-asset-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/renderer/webpack-asset-path.js -------------------------------------------------------------------------------- /docs/shared/cli-install/pods.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/cli-install/pods.mdx -------------------------------------------------------------------------------- /docs/shared/cli-install/spm-xcode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/cli-install/spm-xcode.mdx -------------------------------------------------------------------------------- /docs/shared/cli-install/spm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/cli-install/spm.mdx -------------------------------------------------------------------------------- /docs/shared/pods-installation-panel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/pods-installation-panel.mdx -------------------------------------------------------------------------------- /docs/shared/separate-local-cache-mutation-note.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/separate-local-cache-mutation-note.mdx -------------------------------------------------------------------------------- /docs/shared/setup-codegen/combined.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/setup-codegen/combined.mdx -------------------------------------------------------------------------------- /docs/shared/setup-codegen/single-panel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/setup-codegen/single-panel.mdx -------------------------------------------------------------------------------- /docs/shared/spm-package-installation-panel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/spm-package-installation-panel.mdx -------------------------------------------------------------------------------- /docs/shared/spm-xcode-installation-panel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/spm-xcode-installation-panel.mdx -------------------------------------------------------------------------------- /docs/shared/sqlite-cocoapods-panel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/sqlite-cocoapods-panel.mdx -------------------------------------------------------------------------------- /docs/shared/sqlite-spm-panel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/shared/sqlite-spm-panel.mdx -------------------------------------------------------------------------------- /docs/source/_sidebar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/_sidebar.yaml -------------------------------------------------------------------------------- /docs/source/advanced/file-uploads.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/advanced/file-uploads.mdx -------------------------------------------------------------------------------- /docs/source/advanced/request-configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/advanced/request-configuration.mdx -------------------------------------------------------------------------------- /docs/source/advanced/request-pipeline.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/advanced/request-pipeline.mdx -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/ApolloClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/ApolloClient.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/ApolloStore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/ApolloStore.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/EmptyCancellable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/EmptyCancellable.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/GraphQLResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/GraphQLResponse.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/HTTPRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/HTTPRequest.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/HTTPResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/HTTPResponse.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/JSONRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/JSONRequest.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/MultipartFormData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/MultipartFormData.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/RequestChain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/RequestChain.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/TaskData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/TaskData.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/URLSessionClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/URLSessionClient.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/classes/UploadRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/classes/UploadRequest.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/enums/CachePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/enums/CachePolicy.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/enums/GraphQLResult.Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/enums/GraphQLResult.Source.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/ApolloClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/ApolloClient.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/ApolloExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/ApolloExtension.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/Dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/Dictionary.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/GraphQLError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/GraphQLError.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/GraphQLResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/GraphQLResponse.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/GraphQLResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/GraphQLResult.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/HTTPRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/HTTPRequest.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/HTTPResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/HTTPResponse.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/Record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/Record.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/RecordSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/RecordSet.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/ResponsePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/ResponsePath.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/extensions/Selection.Field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/extensions/Selection.Field.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/methods/unzip(__).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/methods/unzip(__).md -------------------------------------------------------------------------------- /docs/source/api/Apollo/protocols/Cancellable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/protocols/Cancellable.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/protocols/NetworkTransport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/protocols/NetworkTransport.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/protocols/NormalizedCache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/protocols/NormalizedCache.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/structs/GraphQLError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/structs/GraphQLError.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/structs/GraphQLFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/structs/GraphQLFile.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/structs/GraphQLResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/structs/GraphQLResult.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/structs/Record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/structs/Record.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/structs/RecordSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/structs/RecordSet.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/structs/ResponsePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/structs/ResponsePath.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/toc.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/typealiases/CacheKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/typealiases/CacheKey.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/typealiases/JSONObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/typealiases/JSONObject.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/typealiases/JSONValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/typealiases/JSONValue.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/typealiases/Record.Fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/typealiases/Record.Fields.md -------------------------------------------------------------------------------- /docs/source/api/Apollo/typealiases/Record.Value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/Apollo/typealiases/Record.Value.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/classes/Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/classes/Interface.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/classes/Object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/classes/Object.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/DocumentType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/DocumentType.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/Field.OutputType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/Field.OutputType.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/GraphQLEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/GraphQLEnum.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/GraphQLNullable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/GraphQLNullable.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/InputValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/InputValue.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/JSONDecodingError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/JSONDecodingError.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/NoFragments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/NoFragments.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/ParentType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/ParentType.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/enums/Selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/enums/Selection.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Array.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Bool.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Dictionary.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Double.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Double.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/EnumType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/EnumType.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Float.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/GraphQLEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/GraphQLEnum.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/GraphQLQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/GraphQLQuery.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/InputObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/InputObject.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/InputValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/InputValue.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Int.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Interface.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/NSDictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/NSDictionary.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/NSNull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/NSNull.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Object.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Optional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Optional.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/ParentType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/ParentType.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Selection.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/SelectionSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/SelectionSet.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/String.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/URL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/URL.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/extensions/Union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/extensions/Union.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/methods/!=(____).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/methods/!=(____).md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/methods/==(____).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/methods/==(____).md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/methods/__(____).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/methods/__(____).md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/AnyScalarType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/AnyScalarType.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/CacheEntity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/CacheEntity.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/EnumType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/EnumType.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/Fragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/Fragment.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/GraphQLQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/GraphQLQuery.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/InputObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/InputObject.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/JSONDecodable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/JSONDecodable.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/JSONEncodable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/JSONEncodable.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/ScalarType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/ScalarType.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/SelectionSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/SelectionSet.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/protocols/Union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/protocols/Union.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/structs/CacheReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/structs/CacheReference.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/structs/DataDict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/structs/DataDict.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/structs/InputDict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/structs/InputDict.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/structs/Selection.Field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/structs/Selection.Field.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/toc.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/typealiases/JSONObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/typealiases/JSONObject.md -------------------------------------------------------------------------------- /docs/source/api/ApolloAPI/typealiases/JSONValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloAPI/typealiases/JSONValue.md -------------------------------------------------------------------------------- /docs/source/api/ApolloCodegenLib/classes/ASTNode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloCodegenLib/classes/ASTNode.md -------------------------------------------------------------------------------- /docs/source/api/ApolloCodegenLib/structs/Glob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloCodegenLib/structs/Glob.md -------------------------------------------------------------------------------- /docs/source/api/ApolloCodegenLib/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloCodegenLib/toc.md -------------------------------------------------------------------------------- /docs/source/api/ApolloSQLite/structs/DatabaseRow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloSQLite/structs/DatabaseRow.md -------------------------------------------------------------------------------- /docs/source/api/ApolloSQLite/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloSQLite/toc.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/classes/Atomic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/classes/Atomic.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/extensions/Atomic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/extensions/Atomic.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/extensions/Dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/extensions/Dictionary.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/extensions/LinkedList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/extensions/LinkedList.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/extensions/Optional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/extensions/Optional.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/extensions/Result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/extensions/Result.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/structs/IsEverTrue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/structs/IsEverTrue.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/structs/LinkedList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/structs/LinkedList.md -------------------------------------------------------------------------------- /docs/source/api/ApolloUtils/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloUtils/toc.md -------------------------------------------------------------------------------- /docs/source/api/ApolloWebSocket/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/api/ApolloWebSocket/toc.md -------------------------------------------------------------------------------- /docs/source/caching/cache-consistency.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/caching/cache-consistency.mdx -------------------------------------------------------------------------------- /docs/source/caching/cache-key-resolution.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/caching/cache-key-resolution.mdx -------------------------------------------------------------------------------- /docs/source/caching/cache-setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/caching/cache-setup.mdx -------------------------------------------------------------------------------- /docs/source/caching/cache-transactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/caching/cache-transactions.mdx -------------------------------------------------------------------------------- /docs/source/caching/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/caching/introduction.mdx -------------------------------------------------------------------------------- /docs/source/caching/programmatic-cache-keys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/caching/programmatic-cache-keys.mdx -------------------------------------------------------------------------------- /docs/source/client-directives.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/client-directives.mdx -------------------------------------------------------------------------------- /docs/source/code-generation/codegen-cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/code-generation/codegen-cli.mdx -------------------------------------------------------------------------------- /docs/source/code-generation/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/code-generation/introduction.mdx -------------------------------------------------------------------------------- /docs/source/custom-scalars.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/custom-scalars.mdx -------------------------------------------------------------------------------- /docs/source/development/using-xcframework.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/development/using-xcframework.mdx -------------------------------------------------------------------------------- /docs/source/enums.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Enums 3 | --- 4 | 5 | # UNDER CONSTRUCTION -------------------------------------------------------------------------------- /docs/source/fetching/defer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/defer.mdx -------------------------------------------------------------------------------- /docs/source/fetching/error-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/error-handling.mdx -------------------------------------------------------------------------------- /docs/source/fetching/fetching-data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/fetching-data.mdx -------------------------------------------------------------------------------- /docs/source/fetching/fragments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/fragments.mdx -------------------------------------------------------------------------------- /docs/source/fetching/mutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/mutations.md -------------------------------------------------------------------------------- /docs/source/fetching/operation-arguments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/operation-arguments.mdx -------------------------------------------------------------------------------- /docs/source/fetching/persisted-queries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/persisted-queries.mdx -------------------------------------------------------------------------------- /docs/source/fetching/queries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/queries.mdx -------------------------------------------------------------------------------- /docs/source/fetching/subscriptions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/subscriptions.mdx -------------------------------------------------------------------------------- /docs/source/fetching/type-conditions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/fetching/type-conditions.mdx -------------------------------------------------------------------------------- /docs/source/get-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/get-started.mdx -------------------------------------------------------------------------------- /docs/source/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/index.mdx -------------------------------------------------------------------------------- /docs/source/input-objects.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Input Objects 3 | --- 4 | 5 | # UNDER CONSTRUCTION -------------------------------------------------------------------------------- /docs/source/logo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/logo/favicon.png -------------------------------------------------------------------------------- /docs/source/logo/icon-apollo-white-200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/logo/icon-apollo-white-200x200.png -------------------------------------------------------------------------------- /docs/source/logo/logo-apollo-space-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/logo/logo-apollo-space-left.svg -------------------------------------------------------------------------------- /docs/source/logo/logo-apollo-space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/logo/logo-apollo-space.svg -------------------------------------------------------------------------------- /docs/source/migrations/1.0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/migrations/1.0.mdx -------------------------------------------------------------------------------- /docs/source/migrations/1.2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/migrations/1.2.mdx -------------------------------------------------------------------------------- /docs/source/migrations/1.3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/migrations/1.3.mdx -------------------------------------------------------------------------------- /docs/source/migrations/1.5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/migrations/1.5.mdx -------------------------------------------------------------------------------- /docs/source/migrations/1.6.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/migrations/1.6.mdx -------------------------------------------------------------------------------- /docs/source/migrations/1.7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/migrations/1.7.mdx -------------------------------------------------------------------------------- /docs/source/networking/client-creation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/networking/client-creation.mdx -------------------------------------------------------------------------------- /docs/source/pagination/custom-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/pagination/custom-types.mdx -------------------------------------------------------------------------------- /docs/source/pagination/directional-pagers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/pagination/directional-pagers.mdx -------------------------------------------------------------------------------- /docs/source/pagination/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/pagination/introduction.mdx -------------------------------------------------------------------------------- /docs/source/pagination/multi-query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/pagination/multi-query.mdx -------------------------------------------------------------------------------- /docs/source/project-configuration/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/project-configuration/intro.mdx -------------------------------------------------------------------------------- /docs/source/screenshot/apollo-xcode-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/screenshot/apollo-xcode-plugin.png -------------------------------------------------------------------------------- /docs/source/screenshot/spm_packages_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/screenshot/spm_packages_dialog.png -------------------------------------------------------------------------------- /docs/source/screenshot/spm_select_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/screenshot/spm_select_package.png -------------------------------------------------------------------------------- /docs/source/testing/test-mocks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/testing/test-mocks.mdx -------------------------------------------------------------------------------- /docs/source/tutorial/codegen-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/codegen-getting-started.mdx -------------------------------------------------------------------------------- /docs/source/tutorial/images/add_info_to_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/add_info_to_list.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/add_local_package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/add_local_package.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/explorer_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/explorer_cursor.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/explorer_new_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/explorer_new_tab.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/launches_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/launches_detail.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/next_minor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/next_minor.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/sandbox_green_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/sandbox_green_dot.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/sandbox_landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/sandbox_landing.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/schema_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/schema_icon.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/select_libs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/select_libs.png -------------------------------------------------------------------------------- /docs/source/tutorial/images/tap_to_load_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/images/tap_to_load_more.png -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial-first-mutation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/tutorial-first-mutation.mdx -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial-introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/tutorial-introduction.mdx -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial-subscriptions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/docs/source/tutorial/tutorial-subscriptions.mdx -------------------------------------------------------------------------------- /git-sh-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/git-sh-setup -------------------------------------------------------------------------------- /git-subtree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/git-subtree.sh -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/makefile -------------------------------------------------------------------------------- /screenshots/xcode-code-completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/screenshots/xcode-code-completion.png -------------------------------------------------------------------------------- /screenshots/xcode-data-access-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/screenshots/xcode-data-access-error.png -------------------------------------------------------------------------------- /screenshots/xcode-query-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/screenshots/xcode-query-validation.png -------------------------------------------------------------------------------- /scripts/ensure-no-build-settings-in-pbxproj.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/scripts/ensure-no-build-settings-in-pbxproj.sh -------------------------------------------------------------------------------- /scripts/install-tuist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/scripts/install-tuist.sh -------------------------------------------------------------------------------- /scripts/push-forked-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/scripts/push-forked-branch.sh -------------------------------------------------------------------------------- /scripts/run-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/scripts/run-codegen.sh -------------------------------------------------------------------------------- /scripts/run-test-codegen-configurations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/scripts/run-test-codegen-configurations.sh -------------------------------------------------------------------------------- /scripts/set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iron-Ham/apollo-ios-dev/HEAD/scripts/set-version.sh --------------------------------------------------------------------------------