-
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: 4de5ad8 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? |
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.