-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Parse extend schema
correctly when root operations list is absent
#3670
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 8647065 The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
extend schema
parsing issue
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3670 +/- ##
==========================================
+ Coverage 65.32% 65.35% +0.02%
==========================================
Files 122 122
Lines 7003 7003
Branches 2260 2265 +5
==========================================
+ Hits 4575 4577 +2
+ Misses 2411 2409 -2
Partials 17 17
|
extend schema
parsing issueextend schema
correctly when root operations list is absent
Sorry @trevor-scheer — I am not familiar with the code base here. Just have contributed what I could to get incremental delivery moving… |
Hey @acao, is there anything I can do to help move this along? |
|
||
Previously, the parser gave schema extensions the same treatment as schema definitions. The requirements are slightly different, however, since a schema extension does not require a list of root operations according to the spec: https://spec.graphql.org/draft/#sec-Schema-Extension. | ||
|
||
The rule for parsing a schema extension is now distinct from schema definition, allowing the root operations list to be omitted. |
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.
The rule for parsing a schema extension is now distinct from schema definition, allowing the root operations list to be omitted. | |
The rule for parsing a schema extension is now distinct from that for a schema definition, allowing the root operations list to be omitted. |
The online parser currently expects to parse a schema extension the same way it parses a schema definition, however the rules vary slightly in that the list of root operations can be omitted.
This change treats them as two distinct rules, allowing the list to be optional in
extend
case.