-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Proposed Changes * This solves a problem that breaks the GraphQL API when removing non-required fields from the CT the Schema becomes invalid and throws an error. * The error looks more or less like this: ``` object type 'Page2024' does not implement interface 'PageBaseType' because field 'seokeywords' is missing object type 'Page2024' does not implement interface 'PageBaseType' because field 'pagemetadata' is missing ``` Also, fix an issue that prevents the user from seeing the real error thrown by the GraphQL Servlet There is an issue with our GraphQL impl where the library code uses a `NOPLogger` probably due to a conflict in the slf4j dependency. with this fix, we use our code to dispatch and process the request and handle and report the errors The postman was adjusted not to fail. Because this new restriction creating the schema will leave out some the non-required fields from the BaseType collections
- Loading branch information
1 parent
3d4f6fc
commit fbe625f
Showing
5 changed files
with
63 additions
and
69 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
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