-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: Generated models support the @defer
directive
#31
Merged
Conversation
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
|
8f984bd
to
9f65878
Compare
2852be5
to
6b5cf40
Compare
AnthonyMDev
reviewed
Sep 14, 2023
AnthonyMDev
approved these changes
Sep 14, 2023
Tests/ApolloCodegenTests/CodeGeneration/Templates/SelectionSet/SelectionSetTemplateTests.swift
Outdated
Show resolved
Hide resolved
Tests/ApolloCodegenTests/CodeGeneration/Templates/SelectionSet/SelectionSetTemplateTests.swift
Outdated
Show resolved
Hide resolved
Tests/ApolloCodegenTests/CodeGeneration/Templates/SelectionSet/SelectionSetTemplateTests.swift
Outdated
Show resolved
Hide resolved
Tests/ApolloCodegenTests/CodeGeneration/Templates/SelectionSet/SelectionSetTemplateTests.swift
Outdated
Show resolved
Hide resolved
622977a
to
17a1571
Compare
…/SelectionSetTemplateTests.swift Co-authored-by: Anthony Miller <[email protected]>
…/SelectionSetTemplateTests.swift Co-authored-by: Anthony Miller <[email protected]>
848485d
to
14559fd
Compare
calvincestari
commented
Sep 22, 2023
@@ -25,8 +25,7 @@ describe("operation with referencedFragments", () => { | |||
...FragmentA | |||
...FragmentC | |||
} | |||
`, "OperationA", { line: 1, column: 1 }), | |||
false | |||
`, "OperationA", { line: 1, column: 1 }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is due to the move from graphql-js 16 to 17.
AnthonyMDev
approved these changes
Sep 26, 2023
BobaFetters
pushed a commit
that referenced
this pull request
Nov 2, 2023
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
BobaFetters
pushed a commit
that referenced
this pull request
Nov 2, 2023
f499efa4 chore: Disable `@defer` support (#122) 70fd68cd Merge branch 'main' into feature/defer d6c49617 Defer Selection Set Template - Basic (W/clean up) (#118) f5dc1758 merge: `feature/defer` update to `main` (#116) 2c5463b0 refactor: [1/x] Refactor root field builder for deferred fragments (#74) 25d44b83 Merge branch 'main' into feature/defer 1d8424d3 Merge branch 'main' into feature/defer a8c31ca3 Merge branch 'main' into feature/defer d1a3c0ab feature: Operation definition template supports the `@defer` directive (#31) 6a01891b Merge branch 'project-breakup' into feature/defer 11cf5828 Merge branch 'project-breakup' into feature/defer 723b8648 refactor: Don't require `label` argument for deferred named fragments (#33) 9041eee0 feature: Require `label` argument on `@defer` directive (#28) 01b81541 Migrating defer branch to new project structure git-subtree-dir: apollo-ios-codegen git-subtree-split: f499efa4ee99c7eb86e5f2e6d0b630756c48f0de
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes apollographql/apollo-ios#3231
This is the new work to update the code generation engine to support @defer in generated models, which includes: