-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
9759ba2 merge: branch into (#121) d5c6b1f 2023-11-02 Roadmap update 5cc8f75 Merge branch 'main' into feature/defer 98dfa68 merge: `feature/defer` update to `main` (#116) 1a7bde4 Merge branch 'main' into feature/defer 60d4dc4 Merge branch 'main' into feature/defer 773b890 Merge branch 'main' into feature/defer b574fbc Merge branch 'main' into feature/defer 72306f7 feature: Operation definition template supports the `@defer` directive (#31) 98c06c6 Merge branch 'project-breakup' into feature/defer febc191 rfc: Clarifying edits (#22) 0b563c9 Migrating defer branch to new project structure git-subtree-dir: apollo-ios git-subtree-split: 9759ba2
- Loading branch information
gh-action-runner
authored and
gh-action-runner
committed
Nov 2, 2023
1 parent
741aa6a
commit 68c86f1
Showing
16 changed files
with
885 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Foundation | ||
#if !COCOAPODS | ||
import ApolloAPI | ||
#endif | ||
|
||
struct MultipartResponseDeferParser: MultipartResponseSpecificationParser { | ||
static let protocolSpec: String = "deferSpec=20220824" | ||
|
||
static func parse( | ||
data: Data, | ||
boundary: String, | ||
dataHandler: ((Data) -> Void), | ||
errorHandler: ((Error) -> Void) | ||
) { | ||
// TODO: Will be implemented in #3146 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.